mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: r-matrix: Move to set of recommended R packages.
* gnu/packages/statistics.scm (r-matrix): Move to set of recommended R packages.
This commit is contained in:
parent
060c12868b
commit
69e14f9ec7
1 changed files with 22 additions and 22 deletions
|
@ -384,6 +384,28 @@ (define-public r-lattice
|
|||
also flexible enough to handle most nonstandard requirements.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-matrix
|
||||
(package
|
||||
(name "r-matrix")
|
||||
(version "1.2-7.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "Matrix" version))
|
||||
(sha256
|
||||
(base32
|
||||
"09rd51na9spz0lm1lylkfhw43w7c922b83m4jsggmpg3pbd6dssa"))))
|
||||
(properties `((upstream-name . "Matrix")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-lattice" ,r-lattice)))
|
||||
(home-page "http://Matrix.R-forge.R-project.org/")
|
||||
(synopsis "Sparse and dense matrix classes and methods")
|
||||
(description
|
||||
"This package provides classes and methods for dense and sparse matrices
|
||||
and operations on them using LAPACK and SuiteSparse.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-bit
|
||||
(package
|
||||
(name "r-bit")
|
||||
|
@ -623,28 +645,6 @@ (define-public r-rcpp
|
|||
'citation(\"Rcpp\")' for details on these last two.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-matrix
|
||||
(package
|
||||
(name "r-matrix")
|
||||
(version "1.2-7.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "Matrix" version))
|
||||
(sha256
|
||||
(base32
|
||||
"09rd51na9spz0lm1lylkfhw43w7c922b83m4jsggmpg3pbd6dssa"))))
|
||||
(properties `((upstream-name . "Matrix")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-lattice" ,r-lattice)))
|
||||
(home-page "http://Matrix.R-forge.R-project.org/")
|
||||
(synopsis "Sparse and dense matrix classes and methods")
|
||||
(description
|
||||
"This package provides classes and methods for dense and sparse matrices
|
||||
and operations on them using LAPACK and SuiteSparse.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-mgcv
|
||||
(package
|
||||
(name "r-mgcv")
|
||||
|
|
Loading…
Reference in a new issue