guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#42103] [PATCH 2/2] gnu: Add r-flexsurv.


From: Peter Lo
Subject: [bug#42103] [PATCH 2/2] gnu: Add r-flexsurv.
Date: Sun, 28 Jun 2020 15:44:14 +0800

* gnu/packages/cran.scm (r-flexsurv): New variable.
---
 gnu/packages/cran.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index b6cc9b48c3..0ddd0d29d2 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22348,3 +22348,40 @@ counting and recursive k-means partitioning.")
     (description
       "Produces a smooth estimate of the hazard function for censored data.")
     (license (list license:gpl2+ 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
+      "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+)))
-- 
2.17.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]