gnu: Add r-etm.

* gnu/packages/cran.scm (r-etm): New variable.
master
Ricardo Wurmus 2019-01-09 16:57:43 +01:00 committed by Ricardo Wurmus
parent 7aeec0cf37
commit 728012dae8
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 26 additions and 0 deletions

View File

@ -10224,3 +10224,29 @@ of a competing risk, Ann. Stat. 16:1141-1154, and Fine JP and Gray RJ (1999),
A proportional hazards model for the subdistribution of a competing risk,
JASA, 94:496-509.")
(license license:gpl2+)))
(define-public r-etm
(package
(name "r-etm")
(version "1.0.4")
(source
(origin
(method url-fetch)
(uri (cran-uri "etm" version))
(sha256
(base32
"0ws103b3pmli0z4xbyfxkly2wnnnxnnwc0r66qjjqjrlvm7pffl1"))))
(build-system r-build-system)
(propagated-inputs
`(("r-data-table" ,r-data-table)
("r-lattice" ,r-lattice)
("r-rcpp" ,r-rcpp)
("r-rcpparmadillo" ,r-rcpparmadillo)
("r-survival" ,r-survival)))
(home-page "https://cran.r-project.org/web/packages/etm")
(synopsis "Empirical transition matrix")
(description
"The @dfn{empirical transition matrix} (etm) package permits to estimate
the matrix of transition probabilities for any time-inhomogeneous multistate
model with finite state space using the Aalen-Johansen estimator.")
(license license:expat)))