gnu: Add r-grouped.

* gnu/packages/cran.scm (r-grouped): New variable.
This commit is contained in:
Naga Malleswari 2020-04-24 01:43:29 +05:30 committed by Ricardo Wurmus
parent aa3fdca85c
commit d234006b38
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -21278,3 +21278,26 @@ (define-public r-sgloptim
computing for cross validation and subsampling is supported through the
@code{foreach} and @code{doParallel} packages.")
(license license:gpl2+)))
(define-public r-grouped
(package
(name "r-grouped")
(version "0.6-0")
(source
(origin
(method url-fetch)
(uri (cran-uri "grouped" version))
(sha256
(base32
"1glxgacpwk7yjbkwg5ci6bmb2il6hf5zhydwi5bbq6hc032m9976"))))
(properties
`((upstream-name . "grouped")))
(build-system r-build-system)
(propagated-inputs
`(("r-mass" ,r-mass)))
(home-page "https://cran.r-project.org/web/packages/grouped/")
(synopsis "Regression analysis of grouped and coarse data")
(description
"This package provides regression models for grouped and coarse data,
under the coarsened at random assumption.")
(license license:gpl2+)))