├── .gitignore ├── LICENSE ├── README.md ├── archives ├── baseline_linear.ipynb ├── df_for_dash.csv ├── load_SQL.ipynb ├── onboard.ipynb ├── r_dash.py ├── sales_pipeline_scratch_v1.ipynb └── time_series.ipynb ├── csv ├── Archived │ ├── The Counting Room_template.csv │ ├── bar_x_sales_export.csv │ ├── csv_before_features.csv │ ├── pos_1_rental_fees.csv │ ├── predicted_ppa_timeseries.csv │ ├── rest_1_clean_engineered_2017-01-01_to_2019-06-01.csv │ ├── rest_1_clean_engineered_2017-01-01_to_2019-06-10.csv │ ├── rest_1_clean_updated_2017-01-01_to_2019-06-10.csv │ ├── rest_1_clean_updated_2017-01-01_to_2019-06-17.csv │ ├── rest_1_covers_new.csv │ ├── rest_1_daily_sales.csv │ ├── rest_1_daily_sales_split_2.csv │ ├── rest_1_dinner_sales.csv │ ├── rest_1_dinner_sales_w_covers.csv │ ├── rest_1_dinner_sales_w_covers_061619.csv │ ├── rest_1_dinner_sales_w_covers_061819.csv │ ├── rest_1_google_trends.csv │ ├── rest_1_sales_by_check_long_0117_0619.csv │ ├── rest_1_sales_weather_merged_through_2019-06-28 00:00:00 │ ├── rest_1_sales_weather_merged_through_2019-06-28 00:00:00.csv │ ├── the_counting_room_template.csv │ ├── weather_2017-01-01_to_2019-06-01.csv │ ├── weather_2017-01-01_to_2019-06-10.csv │ ├── weather_2017-01-01_to_2019-06-17.csv │ ├── weather_2017-01-01_to_2019-06-18.csv │ ├── weather_2017-01-01_to_2019-06-19.csv │ ├── weather_2017-01-01_to_2019-06-28.csv │ └── weather_2019-06-01_to_2019-06-17.csv ├── CSV_for_EDA.csv ├── CSV_for_EDA_NEW.csv ├── new_through_06_09_separate_outside.csv ├── pos_1_rental_fees.csv ├── rest_1_both_pos_by_check.csv ├── rest_1_covers_new.csv ├── rest_1_sales_by_check_long_0117_0619 ├── rest_1_sales_by_check_long_0117_0619.csv ├── rest_1_sales_weather_merged_through_2019-07-01.csv ├── rest_1_sales_weather_merged_through_2019-07-03.csv ├── rest_1_sales_weather_merged_through_2019-07-08.csv ├── resy_061019_through_063019.csv └── weather_2017-01-01_to_2019-06-30.csv ├── final_eda.ipynb ├── final_model.ipynb ├── load_aws_rds.ipynb ├── restaurant_info.py └── weather.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/README.md -------------------------------------------------------------------------------- /archives/baseline_linear.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/archives/baseline_linear.ipynb -------------------------------------------------------------------------------- /archives/df_for_dash.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/archives/df_for_dash.csv -------------------------------------------------------------------------------- /archives/load_SQL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/archives/load_SQL.ipynb -------------------------------------------------------------------------------- /archives/onboard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/archives/onboard.ipynb -------------------------------------------------------------------------------- /archives/r_dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/archives/r_dash.py -------------------------------------------------------------------------------- /archives/sales_pipeline_scratch_v1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/archives/sales_pipeline_scratch_v1.ipynb -------------------------------------------------------------------------------- /archives/time_series.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/archives/time_series.ipynb -------------------------------------------------------------------------------- /csv/Archived/The Counting Room_template.csv: -------------------------------------------------------------------------------- 1 | ,date,sales,outside 2 | -------------------------------------------------------------------------------- /csv/Archived/bar_x_sales_export.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/bar_x_sales_export.csv -------------------------------------------------------------------------------- /csv/Archived/csv_before_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/csv_before_features.csv -------------------------------------------------------------------------------- /csv/Archived/pos_1_rental_fees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/pos_1_rental_fees.csv -------------------------------------------------------------------------------- /csv/Archived/predicted_ppa_timeseries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/predicted_ppa_timeseries.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_clean_engineered_2017-01-01_to_2019-06-01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_clean_engineered_2017-01-01_to_2019-06-01.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_clean_engineered_2017-01-01_to_2019-06-10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_clean_engineered_2017-01-01_to_2019-06-10.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_clean_updated_2017-01-01_to_2019-06-10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_clean_updated_2017-01-01_to_2019-06-10.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_clean_updated_2017-01-01_to_2019-06-17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_clean_updated_2017-01-01_to_2019-06-17.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_covers_new.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_covers_new.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_daily_sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_daily_sales.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_daily_sales_split_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_daily_sales_split_2.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_dinner_sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_dinner_sales.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_dinner_sales_w_covers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_dinner_sales_w_covers.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_dinner_sales_w_covers_061619.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_dinner_sales_w_covers_061619.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_dinner_sales_w_covers_061819.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_dinner_sales_w_covers_061819.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_google_trends.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_google_trends.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_sales_by_check_long_0117_0619.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_sales_by_check_long_0117_0619.csv -------------------------------------------------------------------------------- /csv/Archived/rest_1_sales_weather_merged_through_2019-06-28 00:00:00: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_sales_weather_merged_through_2019-06-28 00:00:00 -------------------------------------------------------------------------------- /csv/Archived/rest_1_sales_weather_merged_through_2019-06-28 00:00:00.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/rest_1_sales_weather_merged_through_2019-06-28 00:00:00.csv -------------------------------------------------------------------------------- /csv/Archived/the_counting_room_template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/the_counting_room_template.csv -------------------------------------------------------------------------------- /csv/Archived/weather_2017-01-01_to_2019-06-01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/weather_2017-01-01_to_2019-06-01.csv -------------------------------------------------------------------------------- /csv/Archived/weather_2017-01-01_to_2019-06-10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/weather_2017-01-01_to_2019-06-10.csv -------------------------------------------------------------------------------- /csv/Archived/weather_2017-01-01_to_2019-06-17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/weather_2017-01-01_to_2019-06-17.csv -------------------------------------------------------------------------------- /csv/Archived/weather_2017-01-01_to_2019-06-18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/weather_2017-01-01_to_2019-06-18.csv -------------------------------------------------------------------------------- /csv/Archived/weather_2017-01-01_to_2019-06-19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/weather_2017-01-01_to_2019-06-19.csv -------------------------------------------------------------------------------- /csv/Archived/weather_2017-01-01_to_2019-06-28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/weather_2017-01-01_to_2019-06-28.csv -------------------------------------------------------------------------------- /csv/Archived/weather_2019-06-01_to_2019-06-17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/Archived/weather_2019-06-01_to_2019-06-17.csv -------------------------------------------------------------------------------- /csv/CSV_for_EDA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/CSV_for_EDA.csv -------------------------------------------------------------------------------- /csv/CSV_for_EDA_NEW.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/CSV_for_EDA_NEW.csv -------------------------------------------------------------------------------- /csv/new_through_06_09_separate_outside.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/new_through_06_09_separate_outside.csv -------------------------------------------------------------------------------- /csv/pos_1_rental_fees.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/pos_1_rental_fees.csv -------------------------------------------------------------------------------- /csv/rest_1_both_pos_by_check.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/rest_1_both_pos_by_check.csv -------------------------------------------------------------------------------- /csv/rest_1_covers_new.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/rest_1_covers_new.csv -------------------------------------------------------------------------------- /csv/rest_1_sales_by_check_long_0117_0619: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/rest_1_sales_by_check_long_0117_0619 -------------------------------------------------------------------------------- /csv/rest_1_sales_by_check_long_0117_0619.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/rest_1_sales_by_check_long_0117_0619.csv -------------------------------------------------------------------------------- /csv/rest_1_sales_weather_merged_through_2019-07-01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/rest_1_sales_weather_merged_through_2019-07-01.csv -------------------------------------------------------------------------------- /csv/rest_1_sales_weather_merged_through_2019-07-03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/rest_1_sales_weather_merged_through_2019-07-03.csv -------------------------------------------------------------------------------- /csv/rest_1_sales_weather_merged_through_2019-07-08.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/rest_1_sales_weather_merged_through_2019-07-08.csv -------------------------------------------------------------------------------- /csv/resy_061019_through_063019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/resy_061019_through_063019.csv -------------------------------------------------------------------------------- /csv/weather_2017-01-01_to_2019-06-30.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/csv/weather_2017-01-01_to_2019-06-30.csv -------------------------------------------------------------------------------- /final_eda.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/final_eda.ipynb -------------------------------------------------------------------------------- /final_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/final_model.ipynb -------------------------------------------------------------------------------- /load_aws_rds.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/load_aws_rds.ipynb -------------------------------------------------------------------------------- /restaurant_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/restaurant_info.py -------------------------------------------------------------------------------- /weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maks-p/restaurant_sales_forecasting/HEAD/weather.py --------------------------------------------------------------------------------