You can create a for loop -
for column in df.columns[1:]: plt.figure(): plt.plot(df["date"], df[column]) plt.show()