Last active
February 6, 2019 12:44
-
-
Save MaximePawlakFr/d1f6a935c3c6dbfcd1a8f88b17a8ab2c to your computer and use it in GitHub Desktop.
2019-02 Pandas
This file contains hidden or 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 | |
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