weather = pd.read_csv('data/C2A2_data/BinnedCsvs_d400/fb441e62df2d58994928907a91895ec62c2c42e6cd075c2700843b89.csv')
weather.Date = pd.to_datetime(weather.Date)
weather = weather.sort_values(by = ['Date','ID']).reset_index(drop = True)
weather.set_index(weather['ID'], inplace =True)
weather.groupby('ID', as_index = True, axis = 0)
no = weather.Date.nunique()
print(weather)
I want to plot a graph for Data_Value vs Date on a particular ID and Element.