Archived
1
0
Fork 0

gnu: Add r-tclust.

* gnu/packages/statistics.scm (r-tclust): New variable.

Signed-off-by: Ben Woodcroft <donttrustben@gmail.com>
This commit is contained in:
Raoul Jean Pierre Bonnal 2017-03-11 21:50:35 +10:00 committed by Ben Woodcroft
parent 5a200a24eb
commit d1906e3147
No known key found for this signature in database
GPG key ID: 2A6AD9F4AAC20DF6

View file

@ -4772,3 +4772,27 @@ ones, notably the skew-t family, and provides related statistical
methods for data fitting and diagnostics, in the univariate and the methods for data fitting and diagnostics, in the univariate and the
multivariate case.") multivariate case.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public r-tclust
(package
(name "r-tclust")
(version "1.2-3")
(source
(origin
(method url-fetch)
(uri (cran-uri "tclust" version))
(sha256
(base32
"0a1b7yp4l9wf6ic5czizyl2cnxrc1virj0icr8i6m1vv23jd8jfp"))))
(build-system r-build-system)
(propagated-inputs
`(("r-mclust" ,r-mclust)
("r-mvtnorm" ,r-mvtnorm)
("r-sn" ,r-sn)))
(home-page "http://cran.r-project.org/web/packages/tclust")
(synopsis "Robust trimmed clustering")
(description
"This package implements different robust clustering
algorithms (@code{tclust}) based on trimming and including some graphical
diagnostic tools (@code{ctlcurves} and @code{DiscrFact}).")
(license license:gpl3)))