histogram tanggal plot panda
df.groupby([df["date"].dt.year, df["date"].dt.month]).count().plot(kind="bar")
Real Raccoon
df.groupby([df["date"].dt.year, df["date"].dt.month]).count().plot(kind="bar")