Last active
December 26, 2019 14:17
-
-
Save xordux/51824aafab91097bee89da043f837347 to your computer and use it in GitHub Desktop.
Explaining use of pandas.describe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
# using Kaggle's famous Titanic Dataset below | |
data = pd.read_csv("train.csv") | |
print(data.describe(include = 'all')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment