├── LICENSE ├── README.md ├── TrendFinder ├── README.md ├── docs │ ├── dashboard_creation.md │ ├── demographic_analysis.md │ ├── geographic_analysis.md │ ├── img │ │ ├── coastal_wiggle.png │ │ ├── dash_example.png │ │ ├── ex1_correlation.png │ │ ├── ex2_ratios.png │ │ ├── ex3_gglfootball.png │ │ ├── hierarchy.png │ │ ├── infrastructure.png │ │ ├── phoenix_wiggle_cumulative.png │ │ ├── phoenix_wiggle_rolling.png │ │ ├── phoenix_wiggle_toggle.png │ │ ├── three_types.png │ │ ├── wiggle_co-occurrences.png │ │ └── wiggle_xox.png │ ├── infrastructure.md │ ├── overview.md │ └── trend_detection.md ├── lib │ ├── TrendFinder.py │ ├── application.py │ ├── demo.py │ ├── geo.py │ ├── geo_data │ │ ├── PEP_2016_PEPANNRES_with_ann.csv │ │ ├── cb_2016_us_state_5m │ │ │ ├── cb_2016_us_state_5m.cpg │ │ │ ├── cb_2016_us_state_5m.dbf │ │ │ ├── cb_2016_us_state_5m.prj │ │ │ ├── cb_2016_us_state_5m.shp │ │ │ ├── cb_2016_us_state_5m.shp.ea.iso.xml │ │ │ ├── cb_2016_us_state_5m.shp.iso.xml │ │ │ ├── cb_2016_us_state_5m.shp.xml │ │ │ └── cb_2016_us_state_5m.shx │ │ └── geo_mappings.py │ ├── helpers.py │ ├── overview_traces.py │ ├── plot_formatters.py │ └── requirements.txt ├── main.ipynb ├── main.py └── requirements.txt ├── inventory_forecast ├── README.md ├── create_table_one_time.sql ├── data │ └── inventory.csv ├── forecast.r ├── inventory_forecast.py └── inventory_query.sql └── postgres2redshift ├── README.md ├── p2r_add_sortkeys.py ├── p2r_main.sh └── p2r_settings.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/README.md -------------------------------------------------------------------------------- /TrendFinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/README.md -------------------------------------------------------------------------------- /TrendFinder/docs/dashboard_creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/dashboard_creation.md -------------------------------------------------------------------------------- /TrendFinder/docs/demographic_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/demographic_analysis.md -------------------------------------------------------------------------------- /TrendFinder/docs/geographic_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/geographic_analysis.md -------------------------------------------------------------------------------- /TrendFinder/docs/img/coastal_wiggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/coastal_wiggle.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/dash_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/dash_example.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/ex1_correlation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/ex1_correlation.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/ex2_ratios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/ex2_ratios.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/ex3_gglfootball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/ex3_gglfootball.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/hierarchy.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/infrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/infrastructure.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/phoenix_wiggle_cumulative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/phoenix_wiggle_cumulative.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/phoenix_wiggle_rolling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/phoenix_wiggle_rolling.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/phoenix_wiggle_toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/phoenix_wiggle_toggle.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/three_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/three_types.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/wiggle_co-occurrences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/wiggle_co-occurrences.png -------------------------------------------------------------------------------- /TrendFinder/docs/img/wiggle_xox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/img/wiggle_xox.png -------------------------------------------------------------------------------- /TrendFinder/docs/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/infrastructure.md -------------------------------------------------------------------------------- /TrendFinder/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/overview.md -------------------------------------------------------------------------------- /TrendFinder/docs/trend_detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/docs/trend_detection.md -------------------------------------------------------------------------------- /TrendFinder/lib/TrendFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/TrendFinder.py -------------------------------------------------------------------------------- /TrendFinder/lib/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/application.py -------------------------------------------------------------------------------- /TrendFinder/lib/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/demo.py -------------------------------------------------------------------------------- /TrendFinder/lib/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/geo.py -------------------------------------------------------------------------------- /TrendFinder/lib/geo_data/PEP_2016_PEPANNRES_with_ann.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/geo_data/PEP_2016_PEPANNRES_with_ann.csv -------------------------------------------------------------------------------- /TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.dbf -------------------------------------------------------------------------------- /TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.prj -------------------------------------------------------------------------------- /TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.shp -------------------------------------------------------------------------------- /TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.shp.ea.iso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.shp.ea.iso.xml -------------------------------------------------------------------------------- /TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.shp.iso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.shp.iso.xml -------------------------------------------------------------------------------- /TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.shp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.shp.xml -------------------------------------------------------------------------------- /TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/geo_data/cb_2016_us_state_5m/cb_2016_us_state_5m.shx -------------------------------------------------------------------------------- /TrendFinder/lib/geo_data/geo_mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/geo_data/geo_mappings.py -------------------------------------------------------------------------------- /TrendFinder/lib/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/helpers.py -------------------------------------------------------------------------------- /TrendFinder/lib/overview_traces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/overview_traces.py -------------------------------------------------------------------------------- /TrendFinder/lib/plot_formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/plot_formatters.py -------------------------------------------------------------------------------- /TrendFinder/lib/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/lib/requirements.txt -------------------------------------------------------------------------------- /TrendFinder/main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/main.ipynb -------------------------------------------------------------------------------- /TrendFinder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/main.py -------------------------------------------------------------------------------- /TrendFinder/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/TrendFinder/requirements.txt -------------------------------------------------------------------------------- /inventory_forecast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/inventory_forecast/README.md -------------------------------------------------------------------------------- /inventory_forecast/create_table_one_time.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/inventory_forecast/create_table_one_time.sql -------------------------------------------------------------------------------- /inventory_forecast/data/inventory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/inventory_forecast/data/inventory.csv -------------------------------------------------------------------------------- /inventory_forecast/forecast.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/inventory_forecast/forecast.r -------------------------------------------------------------------------------- /inventory_forecast/inventory_forecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/inventory_forecast/inventory_forecast.py -------------------------------------------------------------------------------- /inventory_forecast/inventory_query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/inventory_forecast/inventory_query.sql -------------------------------------------------------------------------------- /postgres2redshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/postgres2redshift/README.md -------------------------------------------------------------------------------- /postgres2redshift/p2r_add_sortkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/postgres2redshift/p2r_add_sortkeys.py -------------------------------------------------------------------------------- /postgres2redshift/p2r_main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/postgres2redshift/p2r_main.sh -------------------------------------------------------------------------------- /postgres2redshift/p2r_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DonorsChoose/open-data-science/HEAD/postgres2redshift/p2r_settings.sh --------------------------------------------------------------------------------