guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add r-ggdist.


From: guix-commits
Subject: branch master updated: gnu: Add r-ggdist.
Date: Wed, 25 Oct 2023 07:35:08 -0400

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new aabfddbe8b gnu: Add r-ggdist.
aabfddbe8b is described below

commit aabfddbe8bc16fa82067e88e7d79c8c1bc802414
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Oct 25 13:32:31 2023 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index de31f44dbd..107f154b65 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -777,6 +777,43 @@ dumbbell charts, the ability to encircle points and 
coordinate-system-based
 text annotations.")
     (license license:agpl3)))
 
+(define-public r-ggdist
+  (package
+    (name "r-ggdist")
+    (version "3.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "ggdist" version))
+       (sha256
+        (base32 "0b15b972wrllsvqqn0nc2c81fd9jl618fvqsfi50hjxwwpdach8l"))))
+    (properties `((upstream-name . "ggdist")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-cli
+                             r-distributional
+                             r-dplyr
+                             r-ggplot2
+                             r-glue
+                             r-numderiv
+                             r-quadprog
+                             r-rlang
+                             r-scales
+                             r-tibble
+                             r-tidyselect
+                             r-vctrs
+                             r-withr))
+    (native-inputs (list r-knitr))
+    (home-page "https://mjskay.github.io/ggdist/";)
+    (synopsis "Visualizations of distributions and uncertainty")
+    (description
+     "This package provides primitives for visualizing distributions using
+ggplot2 that are particularly tuned for visualizing uncertainty in either a
+frequentist or Bayesian mode.  Both analytical distributions (such as
+frequentist confidence distributions or Bayesian priors) and distributions
+represented as samples (such as bootstrap distributions or Bayesian posterior
+samples) are easily visualized.")
+    (license license:gpl3+)))
+
 (define-public r-ggfittext
   (package
     (name "r-ggfittext")



reply via email to

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