mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add r-abodoutlier.
* gnu/packages/cran.scm (r-abodoutlier): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
317b139c5d
commit
016cabf7be
1 changed files with 29 additions and 0 deletions
|
@ -5822,3 +5822,32 @@ (define-public r-abnormality
|
||||||
abnormality as compared to a reference population is often needed in outcomes
|
abnormality as compared to a reference population is often needed in outcomes
|
||||||
research.")
|
research.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public r-abodoutlier
|
||||||
|
(package
|
||||||
|
(name "r-abodoutlier")
|
||||||
|
(version "0.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "abodOutlier" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj"))))
|
||||||
|
(properties `((upstream-name . "abodOutlier")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-cluster" ,r-cluster)))
|
||||||
|
(home-page "https://cran.r-project.org/web/packages/abodOutlier/")
|
||||||
|
(synopsis "Angle-based outlier detection")
|
||||||
|
(description
|
||||||
|
"This package performs angle-based outlier detection on a given data
|
||||||
|
frame. It offers three methods to process data:
|
||||||
|
@enumerate
|
||||||
|
@item full but slow implementation using all the data that has cubic
|
||||||
|
complexity;
|
||||||
|
@item a fully randomized method;
|
||||||
|
@item a method using k-nearest neighbours.
|
||||||
|
@end enumerate
|
||||||
|
These algorithms are well suited for high dimensional data outlier
|
||||||
|
detection.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue