Skip to content

Instantly share code, notes, and snippets.

@James-McNeill
Created July 16, 2021 07:26
Show Gist options
  • Save James-McNeill/c241a81086469fd38f48a43e3d82fc5f to your computer and use it in GitHub Desktop.
Save James-McNeill/c241a81086469fd38f48a43e3d82fc5f to your computer and use it in GitHub Desktop.
# Import the datasets
train = pd.read_csv('../input/commonlitreadabilityprize/train.csv')
# Switch on setting to allow all outputs to be displayed
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
# Perform EDA on the train
train.head()
train.shape
train.dtypes
train.describe(include='all')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment