diff options
author | Navid Afkhami <navid.afkhami@mdc-berlin.de> | 2024-10-30 18:20:58 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-11-01 12:13:16 +0100 |
commit | a5ed41e02ae6f13212b33f3bcbbd196d6fe68f72 (patch) | |
tree | 9d5942e1e01e341ed653467f85b87ada76fbbf42 | |
parent | a18b8a4a9225aecda922d457c3e77486393d7743 (diff) | |
download | guix-a5ed41e02ae6f13212b33f3bcbbd196d6fe68f72.tar.gz guix-a5ed41e02ae6f13212b33f3bcbbd196d6fe68f72.zip |
gnu: Add r-runner.
* gnu/packages/cran.scm (r-runner): New variable.
Change-Id: Ie19a65368b6985cee8d5e438b33a222c18011b4d
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 1a2c100ee7..b1efab5758 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -1689,6 +1689,29 @@ interactive analytic queries against data sources of all sizes ranging from gigabytes to petabytes.") (license license:bsd-3))) +(define-public r-runner + (package + (name "r-runner") + (version "0.4.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "runner" version)) + (sha256 + (base32 "0vhqjnwcx3z3i74p26divx6palx1rwvk4jpqn64jrqlzaw9qich4")))) + (properties `((upstream-name . "runner"))) + (build-system r-build-system) + (propagated-inputs (list r-rcpp)) + (native-inputs (list r-knitr)) + (home-page "https://cran.r-project.org/package=runner") + (synopsis "Running operations for vectors") + (description + "This package provides a library for rolling windows operations. +The package enables full control over the window length, window lag, and time +indices. With a runner one can apply any R function on rolling windows. The +package eases work with equally and unequally spaced time series.") + (license license:gpl2+))) + (define-public r-prettydoc (package (name "r-prettydoc") |