diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2016-12-12 20:59:43 +1000 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2016-12-14 20:43:28 +1000 |
commit | 42066e6b4aa3670c6cb07558d391fdba07c83b46 (patch) | |
tree | 57e782233785fc357f0def6207557370376fa1d2 | |
parent | 5a3849443ac8bdcffea0376b3c7efa30688c10bb (diff) | |
download | guix-42066e6b4aa3670c6cb07558d391fdba07c83b46.tar guix-42066e6b4aa3670c6cb07558d391fdba07c83b46.tar.gz |
gnu: Add r-bit.
* gnu/packages/statistics.scm (r-bit): New variable.
-rw-r--r-- | gnu/packages/statistics.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 36f1889efa..fdf7745922 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -205,6 +205,27 @@ publication-quality data plots. A large amount of 3rd-party packages are available, greatly increasing its breadth and scope.") (license license:gpl3+))) +(define-public r-bit + (package + (name "r-bit") + (version "1.1-12") + (source + (origin + (method url-fetch) + (uri (cran-uri "bit" version)) + (sha256 + (base32 + "0a6ig6nnjzq80r2ll4hc74za3xwzbzig6wlyb4dby0knzf3iqa6f")))) + (build-system r-build-system) + (home-page "http://ff.r-forge.r-project.org") + (synopsis "Class for vectors of 1-bit booleans") + (description + "This package provides bitmapped vectors of booleans (no @code{NA}s), +coercion from and to logicals, integers and integer subscripts, fast boolean +operators and fast summary statistics. With @code{bit} class vectors of true +binary booleans, @code{TRUE} and @code{FALSE} can be stored with 1 bit only.") + (license license:gpl2))) + (define-public r-colorspace (package (name "r-colorspace") |