diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2018-11-12 16:22:54 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-14 15:13:20 +0100 |
commit | 08bf097a0bdd60042195abe89d361b8b664f5a94 (patch) | |
tree | 630e377e08df022a718b1bd48fbd431660f38340 | |
parent | acbf23da447d7f0f7acec4eeef83db9bac800b03 (diff) | |
download | guix-08bf097a0bdd60042195abe89d361b8b664f5a94.tar.gz guix-08bf097a0bdd60042195abe89d361b8b664f5a94.zip |
gnu: Add r-overlap.
* gnu/packages/cran.scm (r-overlap): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index d7b331f674..b7b1100423 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4901,6 +4901,27 @@ transactions (tic) data, performs diurnal adjustments, fits various ACD models and tests them.") (license license:gpl2+))) +(define-public r-overlap + (package + (name "r-overlap") + (version "0.3.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "overlap" version)) + (sha256 + (base32 + "1j3m6ir1chdz0si2fhcw6gs7c9h09bv0chz18rpzxsywww6d4rzy")))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/overlap/") + (synopsis "Estimates of coefficient of overlapping for animal activity patterns") + (description + "This package provides functions to fit kernel density functions to data +on temporal activity patterns of animals; estimate coefficients of overlapping +of densities for two species; and calculate bootstrap estimates of confidence +intervals.") + (license license:gpl3+))) + (define-public r-snakecase (package (name "r-snakecase") |