gnu: Rename r-data.table to r-data-table.

* gnu/packages/statistics.scm (r-data.table): Rename variable ...
(r-data-table): ... to this.
[description]: Clarify relation to data.frame.
[license]: Use correct license.
This commit is contained in:
Ricardo Wurmus 2015-12-11 15:36:46 +01:00
parent 0f6b9e9828
commit 62141c07f7
1 changed files with 7 additions and 6 deletions

View File

@ -921,9 +921,9 @@ database.")
times.") times.")
(license license:gpl2))) (license license:gpl2)))
(define-public r-data.table (define-public r-data-table
(package (package
(name "r-data.table") (name "r-data-table")
(version "1.9.6") (version "1.9.6")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
@ -937,10 +937,11 @@ times.")
(home-page "https://github.com/Rdatatable/data.table/wiki") (home-page "https://github.com/Rdatatable/data.table/wiki")
(synopsis "Enhanced version of data.frame R object") (synopsis "Enhanced version of data.frame R object")
(description (description
"The R data.table package provides functions for fast aggregation of "The R package @code{data.table} is an extension of @code{data.frame}
large data (e.g. 100GB in RAM), fast ordered joins, fast add/modify/delete of providing functions for fast aggregation of large data (e.g. 100GB in RAM),
columns by group, column listing and fast file reading.") fast ordered joins, fast add/modify/delete of columns by group, column listing
(license license:gpl2+))) and fast file reading.")
(license license:gpl3+)))
(define-public python-patsy (define-public python-patsy
(package (package