benwoodcroft pushed a commit to branch master
in repository guix.
commit 545d0789fc56059b9543bdb1a6d194eb1d0b40ed
Author: Raoul Jean Pierre Bonnal <[email protected]>
Date: Sat Mar 11 15:00:50 2017 +1000
gnu: Add r-matrixmodels.
* gnu/packages/statistics.scm (r-matrixmodels): New variable.
Signed-off-by: Ben Woodcroft <[email protected]>
---
gnu/packages/statistics.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index dbfa7dc..9f546f4 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4511,3 +4511,23 @@ decompositions of such matrices, and solutions of linear
systems.")
"Written in C++ using @code{Rcpp}, this package provides a collection of
metrics for evaluating models.")
(license license:gpl2+)))
+
+(define-public r-matrixmodels
+ (package
+ (name "r-matrixmodels")
+ (version "0.4-1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "MatrixModels" version))
+ (sha256
+ (base32
+ "0cyfvhci2p1vr2x52ymkyqqs63x1qchn856dh2j94yb93r08x1zy"))))
+ (properties `((upstream-name . "MatrixModels")))
+ (build-system r-build-system)
+ (home-page "https://cran.r-project.org/web/packages/MatrixModels")
+ (synopsis "Modelling with sparse and dense matrices")
+ (description
+ "This package models with sparse and dense matrix matrices,
+using modular prediction and response module classes.")
+ (license license:gpl2+)))