gnu: Add r-ordinal.

* gnu/packages/cran.scm (r-ordinal): New variable.
This commit is contained in:
Ricardo Wurmus 2018-09-05 19:32:50 +02:00
parent dc66835226
commit b8f6e2f82a
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -2005,6 +2005,33 @@ (define-public r-ucminf
with the package @code{optim}.") with the package @code{optim}.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public r-ordinal
(package
(name "r-ordinal")
(version "2018.8-25")
(source
(origin
(method url-fetch)
(uri (cran-uri "ordinal" version))
(sha256
(base32
"03cv9hcrw8j3lhamzhz8sk2p3ns4cw9z41x49h301k2b3pajv43h"))))
(build-system r-build-system)
(propagated-inputs
`(("r-mass" ,r-mass)
("r-matrix" ,r-matrix)
("r-numderiv" ,r-numderiv)
("r-ucminf" ,r-ucminf)))
(home-page "https://github.com/runehaubo/ordinal")
(synopsis "Regression models for ordinal data")
(description
"This package provides an implementation of cumulative link (mixed)
models also known as ordered regression models, proportional odds models,
proportional hazards models for grouped survival times and ordered models.
Estimation is via maximum likelihood and mixed models are fitted with the
Laplace approximation and adaptive Gauss-Hermite quadrature.")
(license license:gpl2+)))
(define-public r-jomo (define-public r-jomo
(package (package
(name "r-jomo") (name "r-jomo")