Skip to content

Instantly share code, notes, and snippets.

@MaximePawlakFr
Last active February 6, 2019 12:44
Show Gist options
  • Save MaximePawlakFr/d1f6a935c3c6dbfcd1a8f88b17a8ab2c to your computer and use it in GitHub Desktop.
Save MaximePawlakFr/d1f6a935c3c6dbfcd1a8f88b17a8ab2c to your computer and use it in GitHub Desktop.
2019-02 Pandas
import pandas as pd
df = pd.read_csv("./data.csv",sep=";")
print("Shape:")
print(df.shape)
print(df.dtypes)
df.head(20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment