mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-20 05:37:34 -05:00
gnu: Add r-norm.
* gnu/packages/statistics.scm (r-norm): New variable.
This commit is contained in:
parent
ce27cde262
commit
f6802a9247
1 changed files with 20 additions and 0 deletions
|
@ -6224,3 +6224,23 @@ (define-public r-bayesfactor
|
|||
factors for simple designs, including contingency tables, one- and two-sample
|
||||
designs, one-way designs, general ANOVA designs, and linear regression.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public r-norm
|
||||
(package
|
||||
(name "r-norm")
|
||||
(version "1.0-9.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "norm" version))
|
||||
(sha256
|
||||
(base32
|
||||
"01j1h412yfjx5r4dd0w8rhlf55997spgb6zd6pawy19rgw0byp1h"))))
|
||||
(build-system r-build-system)
|
||||
(native-inputs
|
||||
`(("gfortran" ,gfortran)))
|
||||
(home-page "https://cran.r-project.org/web/packages/norm/")
|
||||
(synopsis "Analysis of multivariate normal datasets with missing values")
|
||||
(description "Multiple imputation of multivariate continuous data under a
|
||||
normal model.")
|
||||
;; Custom license, see https://cran.r-project.org/web/packages/norm/LICENSE.
|
||||
(license (license:non-copyleft "file://LICENSE"))))
|
||||
|
|
Loading…
Reference in a new issue