guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: Add r-perm.


From: guix-commits
Subject: 03/05: gnu: Add r-perm.
Date: Fri, 11 Sep 2020 15:34:31 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 962c7ceff5c6497e23d26f44bd08147e4cb9646b
Author: Peter Lo <peterloleungyau@gmail.com>
AuthorDate: Mon Jun 29 16:03:38 2020 +0800

    gnu: Add r-perm.
    
    * gnu/packages/cran.scm (r-perm): New variable.
    
    Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
---
 gnu/packages/cran.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index d67dcc9..f3693fb 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -24213,3 +24213,26 @@ used for univariate censored data (see data set 
@code{cosmesis}), and for
 censored data with competing risks (see data set @code{menopause}).  The
 package also provides functions to visualize the observed data and the MLE.")
     (license license:gpl2+)))
+
+(define-public r-perm
+  (package
+    (name "r-perm")
+    (version "1.0-0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "perm" version))
+       (sha256
+        (base32
+         "0075awl66ynv10vypg63fcxk33qzvxddrp8mi4w08ysvimcyxijk"))))
+    (properties `((upstream-name . "perm")))
+    (build-system r-build-system)
+    (home-page "https://cran.r-project.org/web/packages/perm/";)
+    (synopsis "Exact or asymptotic permutation tests")
+    (description
+     "This package provides several methods for performing permutation tests.
+It has three main functions, to perform linear permutation tests.  These tests
+are tests where the test statistic is the sum of the product of a
+covariate (usually group indicator) and the scores.")
+    ;; Any version of the GPL
+    (license license:gpl2+)))



reply via email to

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