mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add r-arm.
* gnu/packages/cran.scm (r-arm): New variable.
This commit is contained in:
parent
cf383cf08f
commit
06bc7b82f7
1 changed files with 27 additions and 0 deletions
|
@ -7521,3 +7521,30 @@ (define-public r-feature
|
|||
features (e.g. local modes).")
|
||||
;; Either version of the GPL.
|
||||
(license (list license:gpl2 license:gpl3))))
|
||||
|
||||
(define-public r-arm
|
||||
(package
|
||||
(name "r-arm")
|
||||
(version "1.10-1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "arm" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0vvp90jygajd6ydky57z66wqjq9msfbl88irj5jbsray574mh4bg"))))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-abind" ,r-abind)
|
||||
("r-coda" ,r-coda)
|
||||
("r-lme4" ,r-lme4)
|
||||
("r-mass" ,r-mass)
|
||||
("r-matrix" ,r-matrix)
|
||||
("r-nlme" ,r-nlme)))
|
||||
(home-page "https://cran.r-project.org/web/packages/arm/")
|
||||
(synopsis "Data analysis using regression and multilevel/hierarchical models")
|
||||
(description
|
||||
"This package provides functions to accompany A. Gelman and J. Hill,
|
||||
Data Analysis Using Regression and Multilevel/Hierarchical Models, Cambridge
|
||||
University Press, 2007.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue