mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add r-iterators.
* gnu/packages/statistics.scm (r-iterators): New variable.
This commit is contained in:
parent
9128db2178
commit
264df1a49d
1 changed files with 20 additions and 0 deletions
|
@ -1679,6 +1679,26 @@ (define-public r-sparsem
|
|||
standard R subsetting and Kronecker products.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-iterators
|
||||
(package
|
||||
(name "r-iterators")
|
||||
(version "1.0.8")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "iterators" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1f057pabs7ss9h1n244can26qsi5n2k3salrdk0b0vkphlrs4kmf"))))
|
||||
(build-system r-build-system)
|
||||
(home-page "http://cran.r-project.org/web/packages/iterators")
|
||||
(synopsis "Iterator construct for R")
|
||||
(description
|
||||
"This package provides support for iterators, which allow a programmer to
|
||||
traverse through all the elements of a vector, list, or other collection of
|
||||
data.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public r-dt
|
||||
(package
|
||||
(name "r-dt")
|
||||
|
|
Loading…
Reference in a new issue