[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: Add r-catools.
From: |
Ricardo Wurmus |
Subject: |
02/03: gnu: Add r-catools. |
Date: |
Mon, 21 Dec 2015 16:14:06 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit 4c1f2705b561578384f057ae2da36bbd7d546419
Author: Ricardo Wurmus <address@hidden>
Date: Tue Dec 15 12:11:39 2015 +0100
gnu: Add r-catools.
* gnu/packages/statistics.scm (r-catools): New variable.
---
gnu/packages/statistics.scm | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 2878afb..0afa999 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1403,3 +1403,26 @@ the header files from the templated Armadillo library.")
"This package provides functions for bitwise operations on integer
vectors.")
(license license:gpl2+)))
+
+(define-public r-catools
+ (package
+ (name "r-catools")
+ (version "1.17.1")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "caTools" version))
+ (sha256
+ (base32
+ "1x4szsn2qmbzpyjfdaiz2q7jwhap2gky9wq0riah74q0pzz76ank"))))
+ (properties `((upstream-name . "caTools")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-bitops" ,r-bitops)))
+ (home-page "http://cran.r-project.org/web/packages/caTools")
+ (synopsis "Various tools including functions for moving window statistics")
+ (description
+ "This package contains several basic utility functions including:
+moving (rolling, running) window statistic functions, read/write for GIF and
+ENVI binary files, fast calculation of AUC, LogitBoost classifier, base64
+encoder/decoder, round-off-error-free sum and cumsum, etc.")
+ (license license:gpl3+)))