I am trying to plot some csv data. I would like to plot some csv data. The data is shown below. I\'m trying to plot columns 1-11 as a bar plot and column 12 as a line. I
You just need to plot them on the same axis
ax = df.iloc[:,[0,1,2,3,4,5,6,7,8,9,10]].plot(kind='bar')
df.iloc[:,12].plot(linestyle='-', marker='o', ax = ax)
ax.set_xticklabels(df.DateTime, rotation=40) #set the x-ticks to datetime column and rotate
is the code I used to plot both the graphs on same plot