guix-commits
[Top][All Lists]
Advanced

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

07/09: gnu: Add r-plotfunctions.


From: guix-commits
Subject: 07/09: gnu: Add r-plotfunctions.
Date: Tue, 22 Feb 2022 14:14:58 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit f010692a274527303ea1feecd40bc20645a75c15
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Feb 22 20:12:40 2022 +0100

    gnu: Add r-plotfunctions.
    
    * gnu/packages/cran.scm (r-plotfunctions): 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 417bb10631..dd73676622 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -1070,6 +1070,33 @@ accessibility from hue, saturation, and lightness value 
scaling using the
 Chroma.js Color Palette Helper.  See @url{https://gka.github.io/palettes}.";)
     (license license:cc0)))
 
+(define-public r-plotfunctions
+  (package
+    (name "r-plotfunctions")
+    (version "1.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "plotfunctions" version))
+       (sha256
+        (base32 "0asmxw8283fpvl83h478j5nyg59xqifqaa8f2f6l199gvvswhhg2"))))
+    (properties `((upstream-name . "plotfunctions")))
+    (build-system r-build-system)
+    (native-inputs (list r-knitr))
+    (home-page "https://jacolienvanrij.com/tutorials.html";)
+    (synopsis "Various functions to facilitate visualization of data and 
analysis")
+    (description
+     "When analyzing data, plots are a helpful tool for visualizing data and
+interpreting statistical models.  This package provides a set of simple tools
+for building plots incrementally, starting with an empty plot region, and
+adding bars, data points, regression lines, error bars, gradient legends,
+density distributions in the margins, and even pictures.  The package builds
+further on R graphics by simply combining functions and settings in order to
+reduce the amount of code to produce for the user.  As a result, the package
+does not use formula input or special syntax, but can be used in combination
+with default R plot functions.")
+    (license license:gpl2+)))
+
 (define-public r-ecp
   (package
     (name "r-ecp")



reply via email to

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