Seasonal Hybrid ESD algorithm
You've identified a repeating seasonal cycle in the nitrate data, with a period of 12 months. You are now ready to apply the Seasonal-Hybrid ESD algorithm to find out if there are anomalies present in the data.
Este ejercicio forma parte del curso
Introduction to Anomaly Detection in R
Instrucciones del ejercicio
- Use the
AnomalyDetectionVec
function to run the Hybrid-ESD algorithm over thenitrate
concentrations. - You will need to specify the input arguments:
x
: a vector of valuesperiod
the period of any repeating pattern
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
# Run Seasonal-Hybrid ESD for nitrate concentrations
AnomalyDetectionVec(___, ___, direction = 'both', plot = T)