twitter / AnomalyDetection

Anomaly Detection with R
GNU General Public License v3.0
3.55k stars 779 forks source link

fix typo in README.md #74

Closed yohei1126 closed 7 years ago

yohei1126 commented 8 years ago

There is a typo in the following command and I get this error.

> res = AnomalyDetectionTs(raw_data, max_anoms=0.02,
direction='both', only_last=”day”, plot=TRUE)
error:  unexpected input  in "res = AnomalyDetectionTs(raw_data,
max_anoms=0.02, direction='both', only_last="

It must be as follows. The difference is 'day'.

> res = AnomalyDetectionTs(raw_data, max_anoms=0.02,
direction='both', only_last='day', plot=TRUE)