Find local outliers
find_outliers(
df,
context,
do_out = c("lof", "LOOP"),
lof_minPts = 5,
LOOP_k = 5,
LOOP_lambda = 3,
iqrMult = 2
)
Dataframe with context
and all other columns defining the space
in which to look for outliers.
Character. Name of columns defining context.
Character vector of methods to use.
dbscan::lof()
minPts
argument.
DDoutlier::LOOP()
k
argument.
DDoutlier::LOOP()
lambda
argument.
Used in quantile(x, probs = 0.75) + iqrMult * IQR(x)
.
ggplot2::geom_boxplot()
default value is 1.5
.