diff options
author | Marius Bakke <[email protected]> | 2022-09-07 18:20:23 +0200 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2022-09-07 18:20:23 +0200 |
commit | 6cfb2e6270b2759fb98a0de665235bcbb9b9eccf (patch) | |
tree | 83c467772a94cbf72f96b26b08f0a29d1822b1c1 /gnu/packages/statistics.scm | |
parent | 92fdda5a6351dd5246b65165547d50d0b827cef3 (diff) | |
parent | 453e7dd8c4b9422a7c80e3b3e75589b6471f5af1 (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/statistics.scm')
-rw-r--r-- | gnu/packages/statistics.scm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 60ec8bc3a3..36dda6f215 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -7129,3 +7129,48 @@ otting the results.") "This package provides a collection of (mostly simple) functions for generating and manipulating colors in R.") (license license:gpl3)))) + +(define-public r-reghelper + (package + (name "r-reghelper") + (version "1.1.1") + (source (origin + (method url-fetch) + (uri (cran-uri "reghelper" version)) + (sha256 + (base32 + "0v1987rs6kcpizfhrp3hxsyx9arn5vsbapjfgj9478j73mm844ji")))) + (properties `((upstream-name . "reghelper"))) + (build-system r-build-system) + (propagated-inputs (list r-ggplot2 r-lme4 r-mass r-nlme)) + (home-page "https://github.com/jeff-hughes/reghelper") + (synopsis "Helper Functions for Regression Analysis") + (description + "This package provides a set of functions used to automate commonly used methods +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))) |