Skip to content

Instantly share code, notes, and snippets.

@xordux
Last active December 26, 2019 14:17
Show Gist options
  • Save xordux/51824aafab91097bee89da043f837347 to your computer and use it in GitHub Desktop.
Save xordux/51824aafab91097bee89da043f837347 to your computer and use it in GitHub Desktop.
Explaining use of pandas.describe
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