Plot results of Grouper (2 groups and time series) pandas

175 Views Asked by At

I would like to discover how to plot a dataset that looks like: enter image description here

I have obtained it with the code:

df.groupby(['Feature','Type', pd.Grouper(key='date', freq='d')])['value'].sum().reset_index(name = 'value')
0

There are 0 best solutions below