gnu: Add r-flexsurv.

* gnu/packages/cran.scm (r-flexsurv): New variable.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
Peter Lo 2020-09-11 07:25:43 +02:00 committed by Ricardo Wurmus
parent 3ad68ec251
commit 9e4ef763ea
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -23312,3 +23312,39 @@ (define-public r-muhaz
censored data.")
;; Any version of the GPL.
(license license:gpl3+)))
(define-public r-flexsurv
(package
(name "r-flexsurv")
(version "1.1.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "flexsurv" version))
(sha256
(base32
"0x7p1rv51pplfyyzcg63ssb8z56mig7y0363hkr0219w3cvyq9nr"))))
(properties `((upstream-name . "flexsurv")))
(build-system r-build-system)
(propagated-inputs
`(("r-desolve" ,r-desolve)
("r-mstate" ,r-mstate)
("r-muhaz" ,r-muhaz)
("r-mvtnorm" ,r-mvtnorm)
("r-quadprog" ,r-quadprog)
("r-rcpp" ,r-rcpp)
("r-survival" ,r-survival)
("r-tibble" ,r-tibble)
("r-tidyr" ,r-tidyr)))
(native-inputs
`(("r-knitr" ,r-knitr)))
(home-page "https://github.com/chjackson/flexsurv-dev")
(synopsis "Flexible parametric survival and multi-state models")
(description
"This package provides flexible parametric models for time-to-event data,
including the Royston-Parmar spline model, generalized gamma and generalized F
distributions. Any user-defined parametric distribution can be fitted, given
at least an R function defining the probability density or hazard. There are
also tools for fitting and predicting from fully parametric multi-state
models.")
(license license:gpl2+)))