DataFrame.plot.line () Méthode: | tracé de la ligne DataFrame

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