Plot baris panda DataFrame
for index, row in df.iterrows():
plt.plot(row)
plt.show()
John Adex
for index, row in df.iterrows():
plt.plot(row)
plt.show()