I am trying to plot the columns of the DataFrame which contains variable Edition
in x-axis
and Performances
in y-axis
.
I tried this code:
df.plot(x='Edition',y='Performances')
But it gives an error:
no numeric data to plot.
Can someone please suggest how I could do this?