stray_anomalies {weird} | R Documentation |
Test if observations are anomalies according to the stray algorithm.
stray_anomalies(y, ...)
y |
A vector, matrix, or data frame consisting of numerical variables. |
... |
Other arguments are passed to |
Numerical vector containing logical values indicating if the observation is identified as an anomaly using the stray algorithm.
Rob J Hyndman
# Univariate data
y <- c(6, rnorm(49))
stray_anomalies(y)
# Bivariate data
y <- cbind(rnorm(50), c(5, rnorm(49)))
stray_anomalies(y)