I have a CSV file of weather data.
I have the file indexed by date (e.g., the date of the reading).
One of my columns is 'Humidity' and contains humidity data.
I wish to use the .plot function but I wish to limit the data set to between two dates.
To discriminate by time I used this to view my rows,
london[london.loc[datetime(2021,3,1) : datetime(2021,5,31)]]
With london being;
london = read_csv('London_2021.csv')
My question is how can I modify this london['Mean Humidity'].plot(grid=True, figsize=(10,5))
To only display the data between the two dates?