mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-24 19:27:44 +01:00
gnu: Add r-mumin.
* gnu/packages/statistics.scm (r-mumin): New variable.
This commit is contained in:
parent
c01b5a2abb
commit
2ac73debfb
1 changed files with 23 additions and 0 deletions
|
@ -7151,3 +7151,26 @@ (define-public r-reghelper
|
||||||
simple slopes, standardized coefficients, regions of significance (Johnson &
|
simple slopes, standardized coefficients, regions of significance (Johnson &
|
||||||
Neyman, 1936; cf. Spiller et al., 2012), etc.")
|
Neyman, 1936; cf. Spiller et al., 2012), etc.")
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define-public r-mumin
|
||||||
|
(package
|
||||||
|
(name "r-mumin")
|
||||||
|
(version "1.47.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "MuMIn" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1xhsc9hmx2b3zqyvpjs64rs90ccrfcsglrq2mhh85mgplsnva8qj"))))
|
||||||
|
(properties `((upstream-name . "MuMIn")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs (list r-matrix r-nlme))
|
||||||
|
(home-page "https://cran.r-project.org/package=MuMIn")
|
||||||
|
(synopsis "Multi-Model Inference")
|
||||||
|
(description
|
||||||
|
"Tools for performing model selection and model averaging. Automated model
|
||||||
|
selection through subsetting the maximum model, with optional constraints for
|
||||||
|
model inclusion. Model parameter and prediction averaging based on model
|
||||||
|
weights derived from information criteria (AICc and alike) or custom model
|
||||||
|
weighting schemes.")
|
||||||
|
(license license:gpl2)))
|
||||||
|
|
Loading…
Reference in a new issue