mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add r-matrixmodels.
* gnu/packages/statistics.scm (r-matrixmodels): New variable. Signed-off-by: Ben Woodcroft <donttrustben@gmail.com>
This commit is contained in:
parent
aa84100011
commit
545d0789fc
1 changed files with 20 additions and 0 deletions
|
@ -4511,3 +4511,23 @@ (define-public r-modelmetrics
|
||||||
"Written in C++ using @code{Rcpp}, this package provides a collection of
|
"Written in C++ using @code{Rcpp}, this package provides a collection of
|
||||||
metrics for evaluating models.")
|
metrics for evaluating models.")
|
||||||
(license license:gpl2+)))
|
(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+)))
|
||||||
|
|
Loading…
Reference in a new issue