guix-commits
[Top][All Lists]
Advanced

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

04/80: gnu: Add r-distributional.


From: guix-commits
Subject: 04/80: gnu: Add r-distributional.
Date: Tue, 24 Aug 2021 06:31:36 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 6ff48c64f1e2a8badcb74475847c8b73a6d09815
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Aug 22 17:50:37 2021 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 72f7e65..271bb99 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -25236,6 +25236,43 @@ packages, but other reference models can also be used. 
 See the package
 vignette for more information and examples.")
     (license license:gpl3)))
 
+(define-public r-distributional
+  (package
+    (name "r-distributional")
+    (version "0.2.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "distributional" version))
+       (sha256
+        (base32
+         "0ps30ijlf0xwranxkq1z29d76d3zgy8drwxpnxp6ffmyma8mm3h2"))))
+    (properties
+     `((upstream-name . "distributional")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-digest" ,r-digest)
+       ("r-ellipsis" ,r-ellipsis)
+       ("r-farver" ,r-farver)
+       ("r-generics" ,r-generics)
+       ("r-ggplot2" ,r-ggplot2)
+       ("r-lifecycle" ,r-lifecycle)
+       ("r-numderiv" ,r-numderiv)
+       ("r-rlang" ,r-rlang)
+       ("r-scales" ,r-scales)
+       ("r-vctrs" ,r-vctrs)))
+    (home-page "https://pkg.mitchelloharawild.com/distributional/";)
+    (synopsis "Vectorized probability distributions")
+    (description
+     "This package provides vectorized distribution objects with tools for
+manipulating, visualizing, and using probability distributions.  It was
+designed to allow model prediction outputs to return distributions rather than
+their parameters, allowing users to directly interact with predictive
+distributions in a data-oriented workflow.  In addition to providing generic
+replacements for p/d/q/r functions, other useful statistics can be computed
+including means, variances, intervals, and highest density regions.")
+    (license license:gpl3)))
+
 (define-public r-brms
   (package
     (name "r-brms")



reply via email to

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