I have two simple data frames
1.
count type
400 customer
1200 subscriber
2.
count type
2000 customer
5000 subscriber
I am trying to make bar plot with one figure.
X axis: customer - customer, subscriber - subscriber -> same type next to each other)
Y axis: count
I tried
df1.plot.bar()
df2.plot.bar()
and stuck here.
