guix-commits
[Top][All Lists]
Advanced

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

04/16: gnu: Add r-ggvis.


From: guix-commits
Subject: 04/16: gnu: Add r-ggvis.
Date: Thu, 28 Mar 2019 13:25:40 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 8473597f805a33f79a7977ccdc98addeea8bc0c9
Author: Ricardo Wurmus <address@hidden>
Date:   Thu Mar 28 18:10:53 2019 +0100

    gnu: Add r-ggvis.
    
    * gnu/packages/cran.scm (r-ggvis): 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 f68579d..202fba6 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -13442,3 +13442,32 @@ microarrays.")
      "This package provides tools for shrunken centroids regularized
 discriminant analysis for the purpose of classifying high dimensional data.")
     (license license:gpl2+)))
+
+(define-public r-ggvis
+  (package
+    (name "r-ggvis")
+    (version "0.4.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "ggvis" version))
+       (sha256
+        (base32
+         "1bxggjr2313kfy895j0fvrv4bg7yh2z87907lk48i1kn5c9flchk"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-assertthat" ,r-assertthat)
+       ("r-dplyr" ,r-dplyr)
+       ("r-htmltools" ,r-htmltools)
+       ("r-jsonlite" ,r-jsonlite)
+       ("r-lazyeval" ,r-lazyeval)
+       ("r-magrittr" ,r-magrittr)
+       ("r-shiny" ,r-shiny)))
+    (home-page "https://ggvis.rstudio.com/";)
+    (synopsis "Interactive grammar of graphics")
+    (description
+     "This package is a data visualization package for R providing an
+implementation of an interactive grammar of graphics, taking the best parts of
+ggplot2, combining them with the reactive framework of Shiny and drawing web
+graphics using Vega.")
+    (license license:gpl2)))



reply via email to

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