I have a very simple stacked bar plot. I have grouped data
df=pd.crosstab(pd.cut(df_main['AMOUNT'], 10), df_main['Status'])
df.plot.bar(stacked=True)
All I want is to change the tick labels in a range form. Right now label are coming up like [108742.081, 2206696.838]
, I want them to come up like 108,742
to 2,206,696
.