powered by
Test if observations are anomalies according to the stray algorithm.
stray_anomalies(y, ...)
Numerical vector containing logical values indicating if the observation is identified as an anomaly using the stray algorithm.
A vector, matrix, or data frame consisting of numerical variables.
Other arguments are passed to find_HDoutliers.
find_HDoutliers
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)
Run the code above in your browser using DataLab