diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-10-05 22:08:10 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-10-06 00:34:53 +0200 |
commit | f5defed0df4bb8654e5e58018ce1e0a6383381b6 (patch) | |
tree | d2d9f7066213f5a469d240e8a0259b3f09d4ab55 /gnu | |
parent | 880fe019ae64df37815bbdb1a22305f99dae759d (diff) | |
download | guix-f5defed0df4bb8654e5e58018ce1e0a6383381b6.tar.gz |
gnu: Add r-rle.
* gnu/packages/cran.scm (r-rle): New variable.
Diffstat (limited to 'gnu')
-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 0939c4d5a6..fdada68edc 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4774,6 +4774,27 @@ complementary pairs stability selection with improved error bounds arbitrary user specified variable selection approaches.") (license license:gpl2))) +(define-public r-rle + (package + (name "r-rle") + (version "0.9.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "rle" version)) + (sha256 + (base32 + "0sagl0jggg40lihzy7pfq4593rfvc3b3f7g6ggi85s7n18qvwg40")))) + (properties `((upstream-name . "rle"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/rle/") + (synopsis "Common functions for run-length encoded vectors") + (description + "This package provides common @code{base} and @code{stats} methods for +@code{rle} objects, aiming to make it possible to treat them transparently as +vectors.") + (license license:gpl3))) + (define-public r-statnet-common (package (name "r-statnet-common") |