mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add r-with-recommended-packages.
* gnu/packages/statistics.scm (r-with-recommended-packages): New variable.
This commit is contained in:
parent
aeb64f3cb2
commit
f1fe5283c9
1 changed files with 25 additions and 0 deletions
|
@ -31,6 +31,7 @@ (define-module (gnu packages statistics)
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system r)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module (guix build-system trivial)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages curl)
|
||||
|
@ -537,6 +538,30 @@ (define-public r-survival
|
|||
curves, Cox models, and parametric accelerated failure time models.")
|
||||
(license license:lgpl2.0+)))
|
||||
|
||||
(define-public r-with-recommended-packages
|
||||
(package (inherit r)
|
||||
(name "r-with-recommended-packages")
|
||||
(source #f)
|
||||
(build-system trivial-build-system)
|
||||
(arguments '(#:builder (mkdir %output)))
|
||||
(propagated-inputs
|
||||
`(("r" ,r)
|
||||
("r-boot" ,r-boot)
|
||||
("r-class" ,r-class)
|
||||
("r-cluster" ,r-cluster)
|
||||
("r-codetools" ,r-codetools)
|
||||
("r-foreign" ,r-foreign)
|
||||
("r-kernsmooth" ,r-kernsmooth)
|
||||
("r-lattice" ,r-lattice)
|
||||
("r-mass" ,r-mass)
|
||||
("r-matrix" ,r-matrix)
|
||||
("r-mgcv" ,r-mgcv)
|
||||
("r-nlme" ,r-nlme)
|
||||
("r-nnet" ,r-nnet)
|
||||
("r-rpart" ,r-rpart)
|
||||
("r-spatial" ,r-spatial)
|
||||
("r-survival" ,r-survival)))))
|
||||
|
||||
(define-public r-bit
|
||||
(package
|
||||
(name "r-bit")
|
||||
|
|
Loading…
Reference in a new issue