An R package which provides functions for detecting outliers in datasets using statistical methods. It supports identification of anomalous observations in numerical data and is intended for use in data cleaning, exploratory data analysis, and preprocessing workflows.
You can install the package from CRAN with:
install.packages("outlying")or the development version from GitHub with:
if (!require(devtools)) install.packages("devtools")
devtools::install_github("P10911004-NPUST/outlying")x <- round(c(rnorm(10, 0, 1), 5))
Grubbs_test(x)- [] Implement generalized extreme studentized deviate test (GEN-ESD)
- [] Implement ROUT method