mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add r-univoutl.
* gnu/packages/cran.scm (r-univoutl): New variable.
This commit is contained in:
parent
0b13a75716
commit
09e9ad334a
1 changed files with 26 additions and 0 deletions
|
@ -18349,3 +18349,29 @@ (define-public r-adagio
|
||||||
Hooke-Jeeves minimization, and some (evolutionary) global optimization
|
Hooke-Jeeves minimization, and some (evolutionary) global optimization
|
||||||
functions.")
|
functions.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public r-univoutl
|
||||||
|
(package
|
||||||
|
(name "r-univoutl")
|
||||||
|
(version "0.1-5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "univOutl" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"193wrpkvgmlrx43nag8w3ivrlqm37nm6g86wcvd3bgw3hchs70gi"))))
|
||||||
|
(properties `((upstream-name . "univOutl")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-hmisc" ,r-hmisc)
|
||||||
|
("r-robustbase" ,r-robustbase)))
|
||||||
|
(home-page "https://github.com/marcellodo/univOutl")
|
||||||
|
(synopsis "Detection of univariate outliers")
|
||||||
|
(description
|
||||||
|
"This package provides well-known outlier detection techniques in the
|
||||||
|
univariate case. Methods to deal with skewed distribution are included too.
|
||||||
|
The Hidiroglou-Berthelot (1986) method to search for outliers in ratios of
|
||||||
|
historical data is implemented as well. When available, survey weights can be
|
||||||
|
used in outliers detection.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue