I would like to create a Bar chart from a pandas df
The source file is an excel file with column headers: ‘Jan’, ‘Feb’,’Mar’...
The rows contain just values
When I created the df in pandas I then transposed the df and used df.plot()
However, I could not get any axis labels.
Any advice would be good
df1=read_excel(‘filename’)
df1 = df1.T
df1 = df1.sum(axis=‘columns’)
df1.plot()
The output should be a column name followed by the sum of all corresponding values in each column including a visual Bar chart.
Thanks a lot!

matplotlibwith data from your DataFrame.