gnu: Add r-calibrate.

* gnu/packages/cran.scm (r-calibrate): New variable.
master
Ricardo Wurmus 2017-08-14 17:56:26 +02:00
parent 33ce12e293
commit c69d27db57
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 23 additions and 1 deletions

View File

@ -21,7 +21,8 @@
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix utils) #:use-module (guix utils)
#:use-module (guix build-system r)) #:use-module (guix build-system r)
#:use-module (gnu packages statistics))
(define-public r-colorspace (define-public r-colorspace
(package (package
@ -172,3 +173,24 @@ curve (AUACC), and the area under the receiver operating characteristic
curve (AUROC). The curves can also be visualized. Support for partial areas curve (AUROC). The curves can also be visualized. Support for partial areas
is provided.") is provided.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public r-calibrate
(package
(name "r-calibrate")
(version "1.7.2")
(source
(origin
(method url-fetch)
(uri (cran-uri "calibrate" version))
(sha256
(base32
"010nb1nb9y7zhw2k6d2i2drwy5brp7b83mjj2w7i3wjp9xb6l1kq"))))
(build-system r-build-system)
(propagated-inputs
`(("r-mass" ,r-mass)))
(home-page "http://cran.r-project.org/web/packages/calibrate")
(synopsis "Calibration of scatterplot and biplot axes")
(description
"This is a package for drawing calibrated scales with tick marks
on (non-orthogonal) variable vectors in scatterplots and biplots.")
(license license:gpl2)))