guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: Add r-correlation.


From: guix-commits
Subject: 04/05: gnu: Add r-correlation.
Date: Mon, 28 Aug 2023 04:40:30 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit ffa3355458b8938691735996c802549976861b66
Author: Navid Afkhami <navid.afkhami@mdc-berlin.de>
AuthorDate: Fri Aug 25 13:12:36 2023 +0000

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index c0a697502a..2858aebc5a 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -362,6 +362,29 @@ Shiny applications.")
 queues, stacks, deques, dicts and ordered dicts.")
     (license license:expat)))
 
+(define-public r-correlation
+  (package
+    (name "r-correlation")
+    (version "0.8.4")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "correlation" version))
+              (sha256
+               (base32
+                "07fz7wmvrcd6b023jhj3bsrvg4w6i7f1v99jslm0gj84vzmnqzbs"))))
+    (properties `((upstream-name . "correlation")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-bayestestr r-datawizard r-insight r-parameters))
+    (native-inputs (list r-knitr))
+    (home-page "https://easystats.github.io/correlation/";)
+    (synopsis "Methods for correlation analysis")
+    (description
+     "This is a lightweight package for computing different kinds of
+correlations.  These correlations include partial correlations, Bayesian
+correlations, multilevel correlations, polychoric correlations, biweight
+correlations, distance correlations and more.")
+    (license license:gpl3)))
+
 (define-public r-cplm
   (package
     (name "r-cplm")



reply via email to

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