guix-commits
[Top][All Lists]
Advanced

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

02/08: gnu: Add r-modelr.


From: Marius Bakke
Subject: 02/08: gnu: Add r-modelr.
Date: Mon, 26 Mar 2018 15:45:50 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 9a91c925f2e4a4d021b417729e77284dd11ca789
Author: Charlie Ritter <address@hidden>
Date:   Mon Mar 12 09:56:56 2018 -0400

    gnu: Add r-modelr.
    
    * gnu/packages/cran.scm (r-modelr): New variable.
    
    Signed-off-by: Marius Bakke <address@hidden>
---
 gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index d50289d..49bd835 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -37,6 +37,33 @@
   #:use-module (gnu packages statistics)
   #:use-module (gnu packages web))
 
+(define-public r-modelr
+  (package
+    (name "r-modelr")
+    (version "0.1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "modelr" version))
+       (sha256
+        (base32
+         "1rqw0b583vp107zqp4h3wj51dvv4hb3wszfr1f5f48xassc53f95"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-broom" ,r-broom)
+       ("r-dplyr" ,r-dplyr)
+       ("r-lazyeval" ,r-lazyeval)
+       ("r-magrittr" ,r-magrittr)
+       ("r-purrr" ,r-purrr)
+       ("r-tibble" ,r-tibble)
+       ("r-tidyr" ,r-tidyr)))
+    (home-page "https://github.com/tidyverse/modelr";)
+    (synopsis "Helper functions for modelling in pipelines")
+    (description
+     "Functions for modelling that help you seamlessly integrate modelling
+into a pipeline of data manipulation and visualisation.")
+    (license license:gpl3)))
+
 (define-public r-haven
   (package
     (name "r-haven")



reply via email to

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