NYC Taxi data in Winter and SummerΒΆ
Refer to the Data dictionary to learn more about the columns that have been provided.
#Install the pandas library
!pip install pandas
import pandas as pd
path = '../../data/taxi.csv'
#Load the csv file into a dataframe
df = pd.read_csv(path)
#Print the dataframe
print(df)