Pandas Pivot Titanic: Print a concise summary of the dataset
Pandas: Pivot Titanic Exercise-1 with Solution
Write a Pandas program to print a concise summary of the dataset (titanic.csv). Go to Editor
Sample Solution:
Python Code :
import pandas as pd
import numpy as np
df = pd.read_csv('titanic.csv')
result = df.info()
print(result)
Sample Output:
<class 'pandas.core.frame.DataFrame'> RangeIndex: 891 entries, 0 to 890 Data columns (total 16 columns): survived 891 non-null int64 pclass 891 non-null int64 sex 891 non-null object age 714 non-null float64 sibsp 891 non-null int64 parch 891 non-null int64 fare 891 non-null float64 embarked 889 non-null object class 891 non-null object who 891 non-null object adult_male 891 non-null bool deck 203 non-null object embark_town 889 non-null object alive 891 non-null object alone 891 non-null bool Unnamed: 15 0 non-null float64 dtypes: bool(2), float64(3), int64(4), object(7) memory usage: 99.3+ KB None
Python Code Editor:
Pivot Titanic.csv:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Python Pandas Pivot Table Exercises Home.
Next: Write a Pandas program to extract the column labels, shape and data types of the dataset (titanic.csv).
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/pandas/excel/pandas-pivot-titanic-exercise-1.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics