├── .gitattributes ├── 2018-DC-R-Slides_CZ.pdf ├── README.md ├── R_code ├── Anomaly_Detection.R ├── Anomaly_Detection_Movers.Rmd ├── Anomaly_Detection_Vote.Rmd └── README.md ├── R_notebooks ├── Anomaly_Detection_Movers.nb.html ├── Anomaly_Detection_Vote.nb.html └── README.md └── figures ├── README.md ├── anomalize_pete_davidson.png ├── anomalize_us_vote.png ├── anomalize_vote.png ├── anomaly.gif └── google_trends_vote.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/.gitattributes -------------------------------------------------------------------------------- /2018-DC-R-Slides_CZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/2018-DC-R-Slides_CZ.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/README.md -------------------------------------------------------------------------------- /R_code/Anomaly_Detection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/R_code/Anomaly_Detection.R -------------------------------------------------------------------------------- /R_code/Anomaly_Detection_Movers.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/R_code/Anomaly_Detection_Movers.Rmd -------------------------------------------------------------------------------- /R_code/Anomaly_Detection_Vote.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/R_code/Anomaly_Detection_Vote.Rmd -------------------------------------------------------------------------------- /R_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/R_code/README.md -------------------------------------------------------------------------------- /R_notebooks/Anomaly_Detection_Movers.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/R_notebooks/Anomaly_Detection_Movers.nb.html -------------------------------------------------------------------------------- /R_notebooks/Anomaly_Detection_Vote.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/R_notebooks/Anomaly_Detection_Vote.nb.html -------------------------------------------------------------------------------- /R_notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/R_notebooks/README.md -------------------------------------------------------------------------------- /figures/README.md: -------------------------------------------------------------------------------- 1 | folder for exported example figures 2 | -------------------------------------------------------------------------------- /figures/anomalize_pete_davidson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/figures/anomalize_pete_davidson.png -------------------------------------------------------------------------------- /figures/anomalize_us_vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/figures/anomalize_us_vote.png -------------------------------------------------------------------------------- /figures/anomalize_vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/figures/anomalize_vote.png -------------------------------------------------------------------------------- /figures/anomaly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/figures/anomaly.gif -------------------------------------------------------------------------------- /figures/google_trends_vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cattystats/Anomaly_Detection/HEAD/figures/google_trends_vote.png --------------------------------------------------------------------------------