gnu: Add r-parameters.

* gnu/packages/cran.scm (r-parameters): New variable.
This commit is contained in:
Ricardo Wurmus 2019-09-14 00:23:14 +02:00
parent 18a613fb29
commit a5a79dd0b8
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -15393,3 +15393,30 @@ (define-public r-assertr
similar to @code{stopifnot()} but more powerful, friendly, and easier for use
in pipelines.")
(license license:expat)))
(define-public r-parameters
(package
(name "r-parameters")
(version "0.1.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "parameters" version))
(sha256
(base32
"12v301va1l3xydicbf0k04anxlmyjclbbjfg0riprryhkxwwk8g5"))))
(properties `((upstream-name . "parameters")))
(build-system r-build-system)
(propagated-inputs
`(("r-bayestestr" ,r-bayestestr)
("r-insight" ,r-insight)))
(home-page "https://cran.r-project.org/web/packages/parameters")
(synopsis "Processing of model parameters")
(description
"This package provides utilities for processing the parameters of various
statistical models. Beyond computing p values, CIs, and other indices for a
wide variety of models, this package implements features like standardization
or bootstrapping of parameters and models, feature reduction (feature
extraction and variable selection) as well as conversion between indices of
effect size.")
(license license:gpl3)))