diff options
author | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2022-09-05 09:53:33 +0200 |
---|---|---|
committer | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2022-09-05 09:53:33 +0200 |
commit | 2ac73debfb862eed24dcd20b854325d0352df351 (patch) | |
tree | 073ddf192c12382dfdef6b86aa071816944431d3 | |
parent | c01b5a2abb4c0970a2d74f4716992458b462b483 (diff) |
gnu: Add r-mumin.
* gnu/packages/statistics.scm (r-mumin): New variable.
-rw-r--r-- | gnu/packages/statistics.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index dd5636edac..36dda6f215 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -7151,3 +7151,26 @@ in regression analysis. This includes plotting interactions, and calculating simple slopes, standardized coefficients, regions of significance (Johnson & Neyman, 1936; cf. Spiller et al., 2012), etc.") (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))) |