Skip to content
Snippets Groups Projects
Commit 0e4e03f8 authored by Vicente Vera Parra's avatar Vicente Vera Parra Committed by Ricardo Wurmus
Browse files

gnu: Add r-data.table.

* gnu/packages/statistics.scm (r-data.table): New variable.
parent 91312ebe
No related merge requests found
......@@ -912,3 +912,24 @@ (define-public r-chron
"This package provides chronological R objects which can handle dates and
times.")
(license license:gpl2)))
(define-public r-data.table
(package
(name "r-data.table")
(version "1.9.6")
(source (origin
(method url-fetch)
(uri (cran-uri "data.table" version))
(sha256
(base32
"0vi3zplpxqbg78z9ifjfs1kl2i8qhkqxr7l9ysp2663kq54w6x3g"))))
(build-system r-build-system)
(propagated-inputs
`(("r-chron" ,r-chron)))
(home-page "https://github.com/Rdatatable/data.table/wiki")
(synopsis "Enhanced version of data.frame R object")
(description
"The R data.table package provides functions for fast aggregation of
large data (e.g. 100GB in RAM), fast ordered joins, fast add/modify/delete of
columns by group, column listing and fast file reading.")
(license license:gpl2+)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment