DataFrame.plot.line () Metode: | DataFrame Line Plot

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