|
| 1 | +## Store Format for Existing Stores 🌳 🗺️ 🕰️ |
| 2 | +Your company currently has 85 grocery stores and is planning to open 10 new stores at the beginning of the year. Currently, all stores use the same store format for selling their products. Up until now, the company has treated all stores similarly, shipping the same amount of product to each store. This is beginning to cause problems as stores are suffering from product surpluses in some product categories and shortages in others. You've been asked to provide analytical support to make decisions about store formats and inventory planning. |
| 3 | + |
| 4 | +##### Determining Store Format |
| 5 | +To remedy the product surplus and shortages, the company wants to introduce different store formats. Each store format will have a different product selection in order to better match local demand. The actual building sizes will not change, just the product selection and internal layouts. The terms "formats" and "segments" will be used interchangeably throughout this project. You’ve been asked to: |
| 6 | + |
| 7 | +- Determine the optimal number of store formats based on sales data. |
| 8 | +- Sum sales data by StoreID and Year |
| 9 | +- Use percentage sales per category per store for clustering (category sales as a percentage of total store sales). |
| 10 | +- Use only 2015 sales data. |
| 11 | +- Use a K-means clustering model. |
| 12 | +- Segment the 85 current stores into the different store formats. |
| 13 | +- Use the StoreSalesData.csv and StoreInformation.csv files. |
| 14 | + |
| 15 | +## Store Format for New Stores |
| 16 | +The grocery store chain has 10 new stores opening up at the beginning of the year. The company wants to determine which store format each of the new stores should have. However, we don’t have sales data for these new stores yet, so we’ll have to determine the format using each of the new store’s demographic data. |
| 17 | + |
| 18 | +##### Determine the Store Format for New Stores |
| 19 | +You’ve been asked to: |
| 20 | + |
| 21 | +- Develop a model that predicts which segment a store falls into based on the demographic and socioeconomic characteristics of the population that resides in the area around each new store. |
| 22 | +- Use a 20% validation sample with Random Seed = 3 when creating samples with which to compare the accuracy of the models. Make sure to compare a decision tree, forest, and boosted model. |
| 23 | +- Use the model to predict the best store format for each of the 10 new stores. |
| 24 | +- Use the StoreDemographicData.csv file, which contains the information for the area around each store. |
| 25 | +- |
| 26 | +**Note:** In a real world scenario, you could use PCA to reduce the number of predictor variables. However, there is no need to do so in this project. You can leave all predictor variables in the model. |
| 27 | + |
| 28 | +## Forecasting |
| 29 | +Fresh produce has a short life span, and due to increasing costs, the company wants to have an accurate monthly sales forecast. |
| 30 | + |
| 31 | +##### Forecasting Produce Sales |
| 32 | +You’ve been asked to prepare a monthly forecast for produce sales for the full year of 2016 for both existing and new stores. To do so, follow the steps below. |
| 33 | + |
| 34 | +**Note:** Use a 6 month holdout sample for the TS Compare tool (this is because we do not have that much data so using a 12 month holdout would remove too much of the data) |
| 35 | + |
| 36 | +- Step 1: To forecast produce sales for existing stores you should aggregate produce sales across all stores by month and create a forecast. |
| 37 | + |
| 38 | +- Step 2: To forecast produce sales for new stores: |
| 39 | + |
| 40 | +##### Forecast produce sales (not total sales) for the average store (rather than the aggregate) for each segment. |
| 41 | +- Multiply the average store produce sales forecast by the number of new stores in that segment. |
| 42 | + - For example, if the forecasted average store produce sales for segment 1 for March is 10,000, and there are 4 new stores in segment 1, the forecast for the new stores in segment 1 would be 40,000. |
| 43 | +- Sum the new stores produce sales forecasts for each of the segments to get the forecast for all new stores. |
| 44 | +- Step 3: Sum the forecasts of the existing and new stores together for the total produce sales forecast. |
| 45 | + |
| 46 | + |
| 47 | + |
0 commit comments