Last active
November 6, 2017 17:25
-
-
Save 64lines/cdc035988b50280d5d5d008eb231bde3 to your computer and use it in GitHub Desktop.
[PYTHON][PANDAS] - 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 | |
| import pandas as pd | |
| # Fix import by including index_col | |
| cars = pd.read_csv('cars.csv', index_col=0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment