Read CSV Data into Pandas DataFrames
Let's find out how to read CSV data using pandas.
We'll cover the following...
Try it yourself
Try executing the code below to see the result.
Press + to interact
from io import StringIOimport pandas as pdcsv_data = '''\day,hits2020-01-01,4002020-02-02,8002020-02-03,600'''df = pd.read_csv(StringIO(csv_data))print(df['day'].dt.month.unique())
Explanation
The comma-separated values (CSV) format does not have a schema. Everything we read from it is a string. Pandas does a ...