From c1b9d23e7ce9d7d3c658b9bd11beb555e3e3e07b Mon Sep 17 00:00:00 2001 From: Arun Kejariwal Date: Fri, 19 Dec 2014 13:18:06 -0800 Subject: [PATCH 1/5] Updated README.cmd --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index dfde79e..e03ad5f 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ data(raw_data) res = AnomalyDetectionTs(raw_data, max_anoms=0.02, direction='both', plot=TRUE) res$plot ``` +https://github.com/twitter/AnomalyDetection/blob/master/figs/Fig1.png From the plot, we observe that the input time series experiences both positive and negative anomalies. Furthermore, many of the anomalies in the time series @@ -91,6 +92,8 @@ res = AnomalyDetectionTs(raw_data, max_anoms=0.02, direction='both', only_last= res$plot ``` +https://github.com/twitter/AnomalyDetection/blob/master/figs/Fig2.png + From the plot, we observe that only the anomalies that occurred during the last day have been annotated. Further, the prior six days are included to expose the seasonal nature of the time series but are put in the background as the window From 1b42961a84cbecd9f2349351ee4d59494692b8f8 Mon Sep 17 00:00:00 2001 From: Arun Kejariwal Date: Fri, 19 Dec 2014 13:19:47 -0800 Subject: [PATCH 2/5] Updated README.md #2 --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e03ad5f..56603f4 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,8 @@ data(raw_data) res = AnomalyDetectionTs(raw_data, max_anoms=0.02, direction='both', plot=TRUE) res$plot ``` -https://github.com/twitter/AnomalyDetection/blob/master/figs/Fig1.png + +![Fig 1](https://github.com/twitter/AnomalyDetection/blob/master/figs/Fig1.png) From the plot, we observe that the input time series experiences both positive and negative anomalies. Furthermore, many of the anomalies in the time series @@ -92,7 +93,7 @@ res = AnomalyDetectionTs(raw_data, max_anoms=0.02, direction='both', only_last= res$plot ``` -https://github.com/twitter/AnomalyDetection/blob/master/figs/Fig2.png +![Fig 2](https://github.com/twitter/AnomalyDetection/blob/master/figs/Fig2.png) From the plot, we observe that only the anomalies that occurred during the last day have been annotated. Further, the prior six days are included to expose the From bea8b03e71e26790d6fd626b5085e2fa636f57cf Mon Sep 17 00:00:00 2001 From: Chris Aniszczyk Date: Mon, 5 Jan 2015 14:05:30 -0600 Subject: [PATCH 3/5] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 56603f4..24e8d17 100644 --- a/README.md +++ b/README.md @@ -103,3 +103,7 @@ of prime interest is the last day. Anomaly detection for long duration time series can be carried out by setting the longterm argument to T. +## Copyright and License +Copyright 2015 Twitter, Inc and other contributors + +Licensed under the GPLv3 From 21d9b7f8673b1189ca377da4c040de63e5c90c35 Mon Sep 17 00:00:00 2001 From: Chris Aniszczyk Date: Mon, 5 Jan 2015 14:39:22 -0600 Subject: [PATCH 4/5] Add stringr, lubridate dependencies --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d137244..f824bbf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ before_install: - ./travis-tool.sh bootstrap install: - - ./travis-tool.sh install_r Rcpp ggplot2 + - ./travis-tool.sh install_r Rcpp ggplot2 stringr lubridate script: - ./travis-tool.sh run_tests From db19f9ffec772b35346cc1954d8e394c289981f8 Mon Sep 17 00:00:00 2001 From: Chris Aniszczyk Date: Mon, 5 Jan 2015 14:54:12 -0600 Subject: [PATCH 5/5] Add testthat as a dependency --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f824bbf..a7bb683 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ before_install: - ./travis-tool.sh bootstrap install: - - ./travis-tool.sh install_r Rcpp ggplot2 stringr lubridate + - ./travis-tool.sh install_r Rcpp ggplot2 stringr lubridate testthat script: - ./travis-tool.sh run_tests