Machine Learning courses with 110+ Real-time projects Start Now!!
Program 1
import matplotlib.pyplot as mat
x=[0,1,2,3,4,5]
y=[0,1,2,3,4,5]
mat.plot(x,y)
mat.xlabel("X-Axis")
mat.ylabel("Y-Axis")
mat.title("Line Chart")
mat.show()
Program 2
import matplotlib.pyplot as mat
x=[0,1,2,3,4,5]
y=[0,1,2,3,4,5]
mat.plot(x,y,marker='h',mec='y',mfc='g',ms=15)
mat.xlabel("X-Axis")
mat.ylabel("Y-Axis")
mat.title("Marker Example")
mat.show()