me
/
guix
Archived
1
0
Fork 0

gnu: Add r-imputeyn.

* gnu/packages/cran.scm (r-imputeyn): New variable.
master
Ricardo Wurmus 2020-01-01 12:57:41 +01:00
parent 0f5ae473b0
commit 9eb680b1dc
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 27 additions and 0 deletions

View File

@ -19011,3 +19011,30 @@ OpenMP.")
means/quantiles/hazards from possibly censored and/or truncated data. It also
does regression.")
(license license:gpl2+)))
(define-public r-imputeyn
(package
(name "r-imputeyn")
(version "1.3")
(source
(origin
(method url-fetch)
(uri (cran-uri "imputeYn" version))
(sha256
(base32
"1b21w1aa5f7yiq8k0wa86wvbg4ij7f6ldwn6asfqwb0b90rvsgvs"))))
(properties `((upstream-name . "imputeYn")))
(build-system r-build-system)
(propagated-inputs
`(("r-boot" ,r-boot)
("r-emplik" ,r-emplik)
("r-mvtnorm" ,r-mvtnorm)
("r-quadprog" ,r-quadprog)
("r-survival" ,r-survival)))
(home-page "https://cran.r-project.org/web/packages/imputeYn/")
(synopsis "Impute last largest censored observation under weighted least squares")
(description
"This package allows for the imputation of the last largest censored
observantions. This method brings less bias and more efficient estimates for
AFT models.")
(license license:gpl2)))