I have a dataframe I usesd groupby to get the table below
time_groups=time_data.groupby('time_binned').mean()
time_groups
Then I try to build a bar chart to show the 'Status' column result, but I got error TypeError: unsupported operand type(s) for -: 'str' and 'float'
plt.bar(time_groups.index.astype(str),100*time_groups['Status'])

plt.bar. Instead use something likerange(len(time_groups.index))and adjust the labels later on viaplt.xticks.time_groups[['status']].plot.bar()?