guix-commits
[Top][All Lists]
Advanced

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

01/17: gnu: Add r-parameters.


From: guix-commits
Subject: 01/17: gnu: Add r-parameters.
Date: Fri, 13 Sep 2019 18:41:10 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit a5a79dd0b88c0d9da09be7823c6158fa80ac5acd
Author: Ricardo Wurmus <address@hidden>
Date:   Sat Sep 14 00:23:14 2019 +0200

    gnu: Add r-parameters.
    
    * gnu/packages/cran.scm (r-parameters): New variable.
---
 gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index aa1135d..7320286 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -15393,3 +15393,30 @@ met so that errors in data used in analysis pipelines 
can fail quickly.  It is
 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)))



reply via email to

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