gnu: Add r-rrcov.

* gnu/packages/statistics.scm (r-rrcov): New variable.
master
Ricardo Wurmus 2017-08-09 18:12:20 +02:00
parent 23841b2573
commit 0bae5fd6a7
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 27 additions and 0 deletions

View File

@ -4623,6 +4623,33 @@ regression methodology including model selections and multivariate statistics.")
analysis} (PCA) by projection pursuit.")
(license license:gpl3+)))
(define-public r-rrcov
(package
(name "r-rrcov")
(version "1.4-3")
(source
(origin
(method url-fetch)
(uri (cran-uri "rrcov" version))
(sha256
(base32
"0kagqggi634mvrhd67ia7mpjrj5v6w2wq0z3kyppg5xkvzh335nq"))))
(build-system r-build-system)
(propagated-inputs
`(("r-cluster" ,r-cluster)
("r-lattice" ,r-lattice)
("r-mvtnorm" ,r-mvtnorm)
("r-pcapp" ,r-pcapp)
("r-robustbase" ,r-robustbase)))
(native-inputs
`(("gfortran" ,gfortran)))
(home-page "http://cran.r-project.org/web/packages/rrcov")
(synopsis "Scalable robust estimators with high breakdown Point")
(description
"This package provides an implementation of robust location and scatter
estimation and robust multivariate analysis with high breakdown point.")
(license license:gpl2+)))
(define-public r-trimcluster
(package
(name "r-trimcluster")