diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-08-26 11:24:15 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-08-26 11:25:22 +0200 |
commit | 738a48adb1c5c7e69e37105713fdd28706bafd73 (patch) | |
tree | eddd610207603a1dc66806900f9e0c2f4249bc4b /gnu/packages | |
parent | 7986f5cb3d36302ec203ab0eeb83921c940c9f3c (diff) |
gnu: Add r-zoolog.
* gnu/packages/cran.scm (r-zoolog): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b8f8937976..32f3774da6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -30971,3 +30971,33 @@ participants and their emotional expressions throughout the meeting.") "This package provides @code{zm}, a utility that allows you to zoom/navigate any plot when called with any active plot.") (license license:gpl3+))) + +(define-public r-zoolog + (package + (name "r-zoolog") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "zoolog" version)) + (sha256 + (base32 + "1lgdr4hbpdh1b468i3l9msbj8wcd20m323lv5an9y6dnfb9pm986")))) + (properties `((upstream-name . "zoolog"))) + (build-system r-build-system) + (propagated-inputs + `(("r-rdpack" ,r-rdpack) + ("r-stringi" ,r-stringi))) + (native-inputs + `(("r-knitr" ,r-knitr))) + (home-page "https://josempozo.github.io/zoolog/") + (synopsis "Zooarchaeological analysis with log-ratios") + (description + "This package includes functions and reference data to generate and +manipulate log-ratios (also known as @dfn{log size index} (LSI) values) from +measurements obtained on zooarchaeological material. Log ratios are used to +compare the relative (rather than the absolute) dimensions of animals from +archaeological contexts. The zoolog package is also able to seamlessly +integrate data and references with heterogeneous nomenclature, which is +internally managed by a zoolog thesaurus.") + (license license:gpl3))) |