Como o gráfico da plotagem usando o grupo por função em python
#plot data
fig, ax = plt.subplots(figsize=(15,7))
data.groupby(['date','type']).count()['amount'].plot(ax=ax)
Wide-eyed Whale