Last active
February 2, 2021 09:56
-
-
Save deanjamesss/1054c7eb69beaac29453a9693d59c02a to your computer and use it in GitHub Desktop.
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 | |
# Set column 0 as the index and parse it as a date. | |
df = pd.read_csv('read_csv_parse_date.csv', header=0, index_col='col0', parse_dates=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment