I have following pandas dataframe that I would like to plot the NaN and high values as a bar plot in matplotlib:
df
Close 1 Close 2 Close 3 Close 4 Close 5 Close 6
Index
NaN 0.000348 0.000975 0.001450 0.001923 0.002483 0.002916
high 0.001416 -0.000215 0.000058 0.000026 -0.000766 -0.000255
The labels on the x-axis shall be the column names. How can this be done?
Many thanks in advance.


df.T.plot.bar(rot=0)