gnu: Add r-npsurv.

* gnu/packages/cran.scm (r-npsurv): New variable.
master
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
1 changed files with 21 additions and 0 deletions

View File

@ -7013,3 +7013,24 @@ problems under linear equality/inequality constraints. Functions for solving
quadratic programming problems are also available, which transform such
problems into least squares ones first.")
(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+)))