guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add r-visdat.


From: guix-commits
Subject: branch master updated: gnu: Add r-visdat.
Date: Wed, 26 May 2021 11:00:42 -0400

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

roelj pushed a commit to branch master
in repository guix.

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

commit 4fa12759f5589af84da81e3547684053954313ed
Author: Roel Janssen <roel@gnu.org>
AuthorDate: Wed May 26 16:59:17 2021 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index db7f7f0..5497950 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -25594,6 +25594,35 @@ so that natural sort function arranges a character 
vector by their numbers,
 not digit characters.")
    (license license:bsd-3)))
 
+(define-public r-visdat
+  (package
+    (name "r-visdat")
+    (version "0.5.3")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "visdat" version))
+              (sha256
+               (base32
+                "1ikqp29nncbw1xlwyb9dqqgcdk9q0bs3wxhnhnjpb11vcjv7cz2j"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-dplyr" ,r-dplyr)
+       ("r-ggplot2" ,r-ggplot2)
+       ("r-glue" ,r-glue)
+       ("r-magrittr" ,r-magrittr)
+       ("r-purrr" ,r-purrr)
+       ("r-readr" ,r-readr)
+       ("r-tibble" ,r-tibble)
+       ("r-tidyr" ,r-tidyr)))
+    (native-inputs
+     `(("r-knitr" ,r-knitr)))
+    (home-page "https://visdat.njtierney.com/";)
+    (synopsis "Preliminary Visualisation of Data")
+    (description "This package provides procedures to create preliminary 
exploratory
+data visualisations of an entire dataset to identify problems or unexpected 
features
+using @code{ggplot2}.")
+    (license license:expat)))
+
 (define-public r-muhaz
   (package
     (name "r-muhaz")



reply via email to

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