I have a pandas dataframe
jul.head()
which contains
However, when I try to plot my data, I can\'t figure out how to show my i
Following should do:
df1=pd.DataFrame({'config name':['small', 'medium', 'large'], 'value':[-.000127, .000169, -.000206]}) plt.plot(df1.iloc[:,0], df1.iloc[:,1]) plt.xlabel('Config name') plt.ylabel('Value') plt.legend('Value')