Open chezihp opened 7 years ago
Seems like a bug: https://github.com/twitter/AnomalyDetection/blob/master/R/ts_anom_detection.R#L110
if(!(0.01 <= alpha || alpha <= 0.1)) should be: if(!(0.01 <= alpha && alpha <= 0.1))
Seems like a bug: https://github.com/twitter/AnomalyDetection/blob/master/R/ts_anom_detection.R#L110
if(!(0.01 <= alpha || alpha <= 0.1)) should be: if(!(0.01 <= alpha && alpha <= 0.1))