gnu: Add r-purrr.

* gnu/packages/statistics.scm (r-purrr): New variable.
master
Ricardo Wurmus 2016-09-29 17:11:34 +02:00
parent c6ab73e8ff
commit a3c6445be5
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 25 additions and 0 deletions

View File

@ -3117,6 +3117,31 @@ and tidyr provides no margins or aggregation.")
It uses and relies on grid graphics and formal (S4) classes and methods.") It uses and relies on grid graphics and formal (S4) classes and methods.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public r-purrr
(package
(name "r-purrr")
(version "0.2.2")
(source
(origin
(method url-fetch)
(uri (cran-uri "purrr" version))
(sha256
(base32
"0lss8q733nv7s154wargm6vnxq55qygnxakib8xdj4jv0y86sxc3"))))
(build-system r-build-system)
(propagated-inputs
`(("r-bh" ,r-bh)
("r-dplyr" ,r-dplyr)
("r-lazyeval" ,r-lazyeval)
("r-magrittr" ,r-magrittr)
("r-rcpp" ,r-rcpp)))
(home-page "https://github.com/hadley/purrr")
(synopsis "Functional programming tools")
(description
"This package completes R's functional programming tools with missing
features present in other programming languages.")
(license license:gpl3+)))
(define-public r-plotly (define-public r-plotly
(package (package
(name "r-plotly") (name "r-plotly")