gnu: Add r-npsurv.

* gnu/packages/cran.scm (r-npsurv): New variable.
This commit is contained in:
Ricardo Wurmus 2018-10-28 19:23:04 +01:00
parent 7c7ee6cf4c
commit 2ea75a8369
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -7013,3 +7013,24 @@ (define-public r-lsei
quadratic programming problems are also available, which transform such quadratic programming problems are also available, which transform such
problems into least squares ones first.") problems into least squares ones first.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public r-npsurv
(package
(name "r-npsurv")
(version "0.4-0")
(source
(origin
(method url-fetch)
(uri (cran-uri "npsurv" version))
(sha256
(base32
"1wq4c9yfha5azjhrn40iiqkshmvh611sa90jp3lh82n4bl9zfk20"))))
(build-system r-build-system)
(propagated-inputs
`(("r-lsei" ,r-lsei)))
(home-page "https://www.stat.auckland.ac.nz/~yongwang")
(synopsis "Nonparametric survival analysis")
(description
"This package contains functions for non-parametric survival analysis of
exact and interval-censored observations.")
(license license:gpl2+)))