guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Add r-mumin.


From: guix-commits
Subject: 02/02: gnu: Add r-mumin.
Date: Mon, 5 Sep 2022 04:02:52 -0400 (EDT)

lbraun pushed a commit to branch master
in repository guix.

commit 2ac73debfb862eed24dcd20b854325d0352df351
Author: Lars-Dominik Braun <ldb@leibniz-psychology.org>
AuthorDate: Mon Sep 5 09:53:33 2022 +0200

    gnu: Add r-mumin.
    
    * gnu/packages/statistics.scm (r-mumin): New variable.
---
 gnu/packages/statistics.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]