Skip to content

Instantly share code, notes, and snippets.

@vallantin
Last active August 15, 2018 14:48
Show Gist options
  • Save vallantin/a06cafe0864f089c1616ece1ec10b9f8 to your computer and use it in GitHub Desktop.
Save vallantin/a06cafe0864f089c1616ece1ec10b9f8 to your computer and use it in GitHub Desktop.
Pandas 101: import library and load data
import pandas as pd
# Check version
print(pd.__version__)
# Load data
url = 'data/my_file.csv'
data = pd.read_csv(url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment