For information on how to install notebook :jupyter notebook github or jupyter notebook website
After cloning or downloading the zip folder of this repo:
- Open a terminal(try PowerShell on Windows, Terminal on Mac)
- Run 'jupyter notebook'
- Jupyter should now open in your web browser 4.Navigate to this repo SalesAnalysis/SalesAnalysis.ipynb
The sales analysis done in this project is to help us answer the following questions below. Question 1: what was the best month for sales? How much was earned that month?
Question 2: What city had the highest number of sales?
Question 3: What time should we display advertisements to maximize sales?¶
Question 4: What products are most often sold together?
Question 5: What product sold the most?
The script starts by importing necessary modules and merging all the CSV files in to one 'Sales_Data' and that is saved as a data frame under the variable nameall_months_data.
Please note that the script must run in order from top to bottom.