├── .gitignore ├── README.md ├── config.cfg.example ├── example ├── config.cfg ├── example.csv ├── library.pkl ├── roc.png ├── scotus.pdf ├── scotus.pkl ├── scotus.png ├── scotus.txt ├── scotus_averaged.png ├── scotus_data.png └── scotus_linear.png ├── gnip_template.cfg ├── gnip_trend_detection ├── __init__.py ├── analysis.py ├── library.py ├── mk_test.py ├── models.py ├── rebin.py ├── time_bucket.py └── utils.py ├── paper ├── .gitignore ├── WhitePaper_Back_Cover.pdf ├── WhitePaper_Front_Cover.pdf ├── fig │ ├── anomalies.png │ ├── jobs.pdf │ ├── nikolov.png │ ├── nikolov2.png │ ├── nikolov3.pdf │ ├── nikolov_trend.pdf │ ├── roc.pdf │ ├── scotus_1month_ccpm.pdf │ ├── scotus_1month_pbppm.pdf │ ├── scotus_bucket_size.pdf │ └── scotus_pbppm.pdf ├── trends.pdf └── trends.tex ├── setup.py ├── time_series_correlations.py ├── trend_analyze.py ├── trend_analyze_many.py ├── trend_detector.py ├── trend_plot.py └── trend_rebin.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *log 3 | *out 4 | *.swp 5 | build 6 | dist 7 | *.egg-info 8 | libraries/ 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/README.md -------------------------------------------------------------------------------- /config.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/config.cfg.example -------------------------------------------------------------------------------- /example/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/example/config.cfg -------------------------------------------------------------------------------- /example/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/example/example.csv -------------------------------------------------------------------------------- /example/library.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/example/library.pkl -------------------------------------------------------------------------------- /example/roc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/example/roc.png -------------------------------------------------------------------------------- /example/scotus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/example/scotus.pdf -------------------------------------------------------------------------------- /example/scotus.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/example/scotus.pkl -------------------------------------------------------------------------------- /example/scotus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/example/scotus.png -------------------------------------------------------------------------------- /example/scotus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/example/scotus.txt -------------------------------------------------------------------------------- /example/scotus_averaged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/example/scotus_averaged.png -------------------------------------------------------------------------------- /example/scotus_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/example/scotus_data.png -------------------------------------------------------------------------------- /example/scotus_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/example/scotus_linear.png -------------------------------------------------------------------------------- /gnip_template.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/gnip_template.cfg -------------------------------------------------------------------------------- /gnip_trend_detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gnip_trend_detection/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/gnip_trend_detection/analysis.py -------------------------------------------------------------------------------- /gnip_trend_detection/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/gnip_trend_detection/library.py -------------------------------------------------------------------------------- /gnip_trend_detection/mk_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/gnip_trend_detection/mk_test.py -------------------------------------------------------------------------------- /gnip_trend_detection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/gnip_trend_detection/models.py -------------------------------------------------------------------------------- /gnip_trend_detection/rebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/gnip_trend_detection/rebin.py -------------------------------------------------------------------------------- /gnip_trend_detection/time_bucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/gnip_trend_detection/time_bucket.py -------------------------------------------------------------------------------- /gnip_trend_detection/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/gnip_trend_detection/utils.py -------------------------------------------------------------------------------- /paper/.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | *.aux 3 | -------------------------------------------------------------------------------- /paper/WhitePaper_Back_Cover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/WhitePaper_Back_Cover.pdf -------------------------------------------------------------------------------- /paper/WhitePaper_Front_Cover.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/WhitePaper_Front_Cover.pdf -------------------------------------------------------------------------------- /paper/fig/anomalies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/fig/anomalies.png -------------------------------------------------------------------------------- /paper/fig/jobs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/fig/jobs.pdf -------------------------------------------------------------------------------- /paper/fig/nikolov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/fig/nikolov.png -------------------------------------------------------------------------------- /paper/fig/nikolov2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/fig/nikolov2.png -------------------------------------------------------------------------------- /paper/fig/nikolov3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/fig/nikolov3.pdf -------------------------------------------------------------------------------- /paper/fig/nikolov_trend.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/fig/nikolov_trend.pdf -------------------------------------------------------------------------------- /paper/fig/roc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/fig/roc.pdf -------------------------------------------------------------------------------- /paper/fig/scotus_1month_ccpm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/fig/scotus_1month_ccpm.pdf -------------------------------------------------------------------------------- /paper/fig/scotus_1month_pbppm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/fig/scotus_1month_pbppm.pdf -------------------------------------------------------------------------------- /paper/fig/scotus_bucket_size.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/fig/scotus_bucket_size.pdf -------------------------------------------------------------------------------- /paper/fig/scotus_pbppm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/fig/scotus_pbppm.pdf -------------------------------------------------------------------------------- /paper/trends.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/trends.pdf -------------------------------------------------------------------------------- /paper/trends.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/paper/trends.tex -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/setup.py -------------------------------------------------------------------------------- /time_series_correlations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/time_series_correlations.py -------------------------------------------------------------------------------- /trend_analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/trend_analyze.py -------------------------------------------------------------------------------- /trend_analyze_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/trend_analyze_many.py -------------------------------------------------------------------------------- /trend_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/trend_detector.py -------------------------------------------------------------------------------- /trend_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/trend_plot.py -------------------------------------------------------------------------------- /trend_rebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/Gnip-Trend-Detection/HEAD/trend_rebin.py --------------------------------------------------------------------------------