1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-21 16:45:58 +02:00

gnu: Add r-rlist.

* gnu/packages/cran.scm (r-rlist): New variable.
This commit is contained in:
zimoun
2022-01-18 18:54:16 +01:00
committed by Ricardo Wurmus
parent c6b4fc9785
commit d088b40c68
+22
View File
@@ -27178,6 +27178,28 @@ advanced usage, an index can be used as a secondary vector that defines how
sliding windows are to be created.")
(license license:expat)))
(define-public r-rlist
(package
(name "r-rlist")
(version "0.4.6.2")
(source
(origin
(method url-fetch)
(uri (cran-uri "rlist" version))
(sha256
(base32 "15q99rhbbjq8zd976yjmfnny45dd5fg2p2dv1sljg2kwi66nbppb"))))
(properties `((upstream-name . "rlist")))
(build-system r-build-system)
(propagated-inputs (list r-data-table r-jsonlite r-xml r-yaml))
(home-page "https://renkun-ken.github.io/rlist/")
(synopsis "A Toolbox for Non-Tabular Data Manipulation")
(description
"This package provides a set of functions for data manipulation with
list objects, including mapping, filtering, grouping, sorting, updating,
searching, and other useful functions. Most functions are designed to be
pipeline friendly so that data processing with lists can be chained.")
(license license:expat)))
(define-public r-rsample
(package
(name "r-rsample")