gnu: Add r-smpracticals.

* gnu/packages/cran.scm (r-smpracticals): New variable.
This commit is contained in:
Ricardo Wurmus 2019-12-13 18:42:45 +01:00
parent 0379a16761
commit bba4ec62e3
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -16630,3 +16630,30 @@ (define-public r-accept
Disease} (COPD) patients, based on the clinical prediction model published in
Adibi et al. (2019) @url{doi:10.1101/651901}.")
(license license:gpl3)))
(define-public r-smpracticals
(package
(name "r-smpracticals")
(version "1.4-3")
(source
(origin
(method url-fetch)
(uri (cran-uri "SMPracticals" version))
(sha256
(base32
"0zxq84f9i3b86xx6msb25b61gyj9k09iab2b7wg4d93yas9qzayf"))))
(properties `((upstream-name . "SMPracticals")))
(build-system r-build-system)
(propagated-inputs
`(("r-ellipse" ,r-ellipse)
("r-mass" ,r-mass)
("r-nlme" ,r-nlme)
("r-survival" ,r-survival)))
(home-page "http://statwww.epfl.ch/davison/SM/")
(synopsis "Practicals for use with Davison (2003) Statistical Models")
(description
"This package contains the datasets and a few functions for use with the
practicals outlined in Appendix A of the book Statistical Models (Davison,
2003, Cambridge University Press). The practicals themselves can be found at
@url{http://statwww.epfl.ch/davison/SM/}.")
(license license:gpl2+)))