DataFrame.plot.Line () Metoda: | Wykres linii DataFrame

# DataFrame.plot.line() method
#eg 
df['col'].plot.line()
plt.xlabel("X axis label")
plt.ylabel("Y axis label")
plt.show()
rudythealchemist