Advanced Analytics anomaly models: Z-score vs time series vs paired t-tests

Verdict: Use the Time series Z-score model for spikes over a sliding window. Use paired t-tests to compare the same devices before and after a change. Both Z-score models use mean and standard deviation; the population one uses a fixed dataset.

CriterionPopulation Z-scoreTime series Z-scorePaired t-testsThreshold-based heuristic
MethodMean and stddev over a fixed datasetMean and stddev over a sliding windowCompares paired observationsFlags a fixed value breach
When to useCompare a device against the populationSpikes adapting to temporal patternsBefore vs after on the same devicesSimple fixed-threshold alerts

Rules

Traps