I have this two data frames df and df1 where
B2B_1 = {'Month': ['10/2018','11/2018','12/2018','01/2019','02/2019','03/2019'],
'B2B': [200,400, 250,
100,120,200]]
}
B2C_1 = {'Month': ['10/2018','11/2018','12/2018','01/2019','02/2019','03/2019'],
'B2C': [200,400, 250,
100,120,200]
}
df=pd.DataFrame(B2B_1)
df1=pd.DataFrame(B2C_1)
And I didn't know how to plot these two data frames in one plot where axis is based on "Month"
pd.concat([df,df1], axis=1).plot(kind='bar')