0% found this document useful (0 votes)
14 views4 pages

08 Sales Analysis

The document outlines a sales data analysis project focusing on 12 months of electronics store purchases. It poses several business questions regarding sales performance, including identifying the best sales month, top-selling city, optimal advertisement timing, frequently sold product combinations, and the best-selling product. Additionally, it includes data manipulation techniques such as handling NaN values, changing column types, and performing aggregate analysis using groupby.

Uploaded by

modem40203
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views4 pages

08 Sales Analysis

The document outlines a sales data analysis project focusing on 12 months of electronics store purchases. It poses several business questions regarding sales performance, including identifying the best sales month, top-selling city, optimal advertisement timing, frequently sold product combinations, and the best-selling product. Additionally, it includes data manipulation techniques such as handling NaN values, changing column types, and performing aggregate analysis using groupby.

Uploaded by

modem40203
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Sales Data

Answer business questions about 12 months worth of sales data. The data
contains hundreds of thousands of electronics store purchases broken down by
month, product type, cost, purchase address, etc.
1. - What was the best month for sales? How much was earned
that month?
2. - What city sold the most product?
3. - What time should we display advertisemens to maximize the
likelihood of customer’s buying product?
4. - What products are most o en sold together?
5. - What product sold the most? Why do you think it sold the
most?
- Drop NaN values from DataFrame
- Removing rows based on a condition
- Change the type of columns (to_numeric, to_datetime, astype)
- Concatenating multiple csvs together to create a new DataFrame (pd.concat)
- Adding columns
- Parsing cells as strings to make new columns (.str)
- Using the .apply() method
- Using groupby to perform aggregate analysis

You might also like