me
/
guix
Archived
1
0
Fork 0

gnu: Add r-prodlim.

* gnu/packages/cran.scm (r-prodlim): New variable.
master
Ricardo Wurmus 2017-09-11 02:53:39 +02:00
parent d26b7c1bfc
commit 9dd707f03b
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 25 additions and 0 deletions

View File

@ -1006,3 +1006,28 @@ variable models.")
"This package provides an implementation of dimensionality reduction via "This package provides an implementation of dimensionality reduction via
regression using Kernel Ridge Regression.") regression using Kernel Ridge Regression.")
(license license:gpl3))) (license license:gpl3)))
(define-public r-prodlim
(package
(name "r-prodlim")
(version "1.6.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "prodlim" version))
(sha256
(base32
"0m51rkivx1zr6whdqwj66jpnkmp4385m06kkha3dp8qqf4jna9iz"))))
(build-system r-build-system)
(propagated-inputs
`(("r-kernsmooth" ,r-kernsmooth)
("r-lava" ,r-lava)
("r-rcpp" ,r-rcpp)
("r-survival" ,r-survival)))
(home-page "http://cran.r-project.org/web/packages/prodlim")
(synopsis "Product-limit estimation for censored event history analysis")
(description
"This package provides a fast and user-friendly implementation of
nonparametric estimators for censored event history (survival) analysis with
the Kaplan-Meier and Aalen-Johansen methods.")
(license license:gpl2+)))