mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add r-tidyft.
* gnu/packages/cran.scm (r-tidyft): New variable.
This commit is contained in:
parent
cd7900c71f
commit
4ef4de633c
1 changed files with 22 additions and 0 deletions
|
@ -3008,6 +3008,28 @@ (define-public r-vegan
|
|||
data types as well.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-tidyft
|
||||
(package
|
||||
(name "r-tidyft")
|
||||
(version "0.5.7")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "tidyft" version))
|
||||
(sha256
|
||||
(base32
|
||||
"00qcsr2sx8fwyil384vgppx0q72qjrkj7h5nv4mdxdi8f9h6ph2r"))))
|
||||
(properties `((upstream-name . "tidyft")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs (list r-data-table r-fst r-stringr))
|
||||
(native-inputs (list r-knitr))
|
||||
(home-page "https://github.com/hope-data-science/tidyft")
|
||||
(synopsis "Fast and memory efficient data operations in tidy syntax")
|
||||
(description "Tidyft is an extension of @code{data.table}. It uses
|
||||
modifification by reference whenever possible. This toolkit is designed for
|
||||
big data analysis in high-performance desktop or laptop computers. The syntax
|
||||
of the package is similar or identical to tidyverse.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-tidyverse
|
||||
(package
|
||||
(name "r-tidyverse")
|
||||
|
|
Loading…
Reference in a new issue