mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add r-classint.
* gnu/packages/cran.scm (r-classint): New variable.
This commit is contained in:
parent
7002c44fb0
commit
518c1dea10
1 changed files with 24 additions and 0 deletions
|
@ -12047,3 +12047,27 @@ (define-public r-units
|
||||||
is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
|
is compatible with the @code{POSIXct}, @code{Date} and @code{difftime}
|
||||||
classes.")
|
classes.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public r-classint
|
||||||
|
(package
|
||||||
|
(name "r-classint")
|
||||||
|
(version "0.3-1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "classInt" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1fcjrb593bzvx1z57hq1sjs2gp6g7sm4d4xrhasfrps4nmbzirp2"))))
|
||||||
|
(properties `((upstream-name . "classInt")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-class" ,r-class)
|
||||||
|
("r-e1071" ,r-e1071)))
|
||||||
|
(native-inputs `(("gfortran" ,gfortran)))
|
||||||
|
(home-page "https://github.com/r-spatial/classInt/")
|
||||||
|
(synopsis "Choose univariate class intervals")
|
||||||
|
(description
|
||||||
|
"This package provides selected commonly used methods for choosing
|
||||||
|
univariate class intervals for mapping or other graphics purposes.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue