w3resource

Pandas Pivot Table: Exercises, Practice, Solution

[An editor is available at the bottom of the page to write and execute the scripts. Go to the editor]

Table of Contain

Pandas Pivot Table [13 exercises with solution]

[ The purpose of the following exercises to show various tasks of a pivot table. We have executed Python code in Jupyter QtConsole and used Salesdata.xlsx as reference data. To get Jupyter QtConsole download Anaconda from here.

A pivot table is a table of statistics that summarizes the data of a more extensive table (such as from a database, spreadsheet, or business intelligence program). This summary might include sums, averages, or other statistics, which the pivot table groups together in a meaningful way.

Go to Excel data

1. Write a Pandas program to create a Pivot table with multiple indexes from a given excel sheet (Salesdata.xlsx). Click me to see the sample solution

2. Write a Pandas program to create a Pivot table and find the total sale amount region wise, manager wise. Click me to see the sample solution

3. Write a Pandas program to create a Pivot table and find the total sale amount region wise, manager wise, sales man wise.
Click me to see the sample solution

4. Write a Pandas program to create a Pivot table and find the item wise unit sold.
Click me to see the sample solution

5. Write a Pandas program to create a Pivot table and find the region wise total sale.
Click me to see the sample solution

6. Write a Pandas program to create a Pivot table and find the region wise, item wise unit sold.
Click me to see the sample solution

7. Write a Pandas program to create a Pivot table and count the manager wise sale and mean value of sale amount.
Click me to see the sample solution

8. Write a Pandas program to create a Pivot table and find manager wise, salesman wise total sale and also display the sum of all sale amount at the bottom.
Click me to see the sample solution

9. Write a Pandas program to create a Pivot table and find the total sale amount region wise, manager wise, sales man wise where Manager = "Douglas".
Click me to see the sample solution

10. Write a Pandas program to create a Pivot table and find the region wise Television and Home Theater sold.
Click me to see the sample solution

11. Write a Pandas program to create a Pivot table and find the maximum sale value of the items.
Click me to see the sample solution

12. Write a Pandas program to create a Pivot table and find the minimum sale value of the items.
Click me to see the sample solution

13.Write a Pandas program to create a Pivot table and find the maximum and minimum sale value of the items.
Click me to see the sample solution

Pandas Pivot on Titanic Passengers csv [19 exercises with solution]

1. Write a Pandas program to print a concise summary of the dataset (titanic.csv).
Click me to see the sample solution

2. Write a Pandas program to extract the column labels, shape and data types of the dataset (titanic.csv).
Click me to see the sample solution

3. Write a Pandas program to create a Pivot table with multiple indexes from the data set of titanic.csv.
Click me to see the sample solution

4. Write a Pandas program to create a Pivot table and find survival rate by gender on various classes.
Click me to see the sample solution

5. Write a Pandas program to create a Pivot table and find survival rate by gender.
Click me to see the sample solution

6. Write a Pandas program to create a Pivot table and find survival rate by gender, age wise of various classes.
Click me to see the sample solution

7. Write a Pandas program to partition each of the passengers into four categories based on their age.
Note: Age categories (0, 10), (10, 30), (30, 60), (60, 80)
Click me to see the sample solution

8. Write a Pandas program to create a Pivot table and count survival by gender, categories wise age of various classes.
Note: Age categories (0, 10), (10, 30), (30, 60), (60, 80)
Click me to see the sample solution

9. Write a Pandas program to create a Pivot table and find survival rate by gender, age of the different categories of various classes.
Click me to see the sample solution

10. Write a Pandas program to create a Pivot table and find survival rate by gender, age of the different categories of various classes. Add the fare as a dimension of columns and partition fare column into 2 categories based on the values present in fare columns.
Click me to see the sample solution

11. Write a Pandas program to create a Pivot table and calculate number of women and men were in a particular cabin class.
Click me to see the sample solution

12. Write a Pandas program to create a Pivot table and find survival of both gender and class affected.
Click me to see the sample solution

13. Write a Pandas program to create a Pivot table and compute survival totals of all classes along each group.
Click me to see the sample solution

14. Write a Pandas program to create a Pivot table and calculate how many women and men were in a particular cabin class.
Click me to see the sample solution

15. Write a Pandas program to create a Pivot table and find number of survivors and average rate grouped by gender and class.
Click me to see the sample solution

16. Write a Pandas program to create a Pivot table and find number of adult male, adult female and children.
Click me to see the sample solution

17. Write a Pandas program to create a Pivot table and check missing values of children.
Click me to see the sample solution

18. Write a Pandas program to create a Pivot table and separate the gender according to whether they traveled alone or not to get the probability of survival.
Click me to see the sample solution

19. Write a Pandas program to create a Pivot table and find the probability of survival by class, gender, solo boarding and port of embarkation.
Click me to see the sample solution

Salesdata.xlsx:


Download (Salesdata.xlsx) from here

Titanic.csv:


Source: OpenDataSoft

Download (Titanic.csv) from here

Python Code Editor:


More to Come !

Do not submit any solution of the above exercises at here, if you want to contribute go to the appropriate exercise page.

Test your Python skills with w3resource's quiz



Follow us on Facebook and Twitter for latest update.