Example 1: matplotlib plot
import matplotlib.pyplot as plt
fig = plt.figure(1)
plt.title("Y vs X", fontsize='16')
plt.plot([1, 2, 3, 4], [6,2,8,4])
plt.xlabel("X",fontsize='13')
plt.ylabel("Y",fontsize='13')
plt.legend(('YvsX'),loc='best')
plt.savefig('Y_X.png')
plt.grid()
plt.show()
Example 2: how to plotting points on matplotlib
import matplotlib.pyplot as plt
import numpy as np
data = np.random.rand(1024,2)
plt.scatter(data[:,0],data[:,1])
plt.show()
// Don't be
// fooled by this simplicity— plt.scatter() is a rich command.
Example 3: python matplotlib how to graph point on line
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
ax.set_xlim(0,10)
ax.set_ylim(0,10)
xmin = 1
xmax = 9
y = 5
height = 1
plt.hlines(y, xmin, xmax)
plt.vlines(xmin, y - height / 2., y + height / 2.)
plt.vlines(xmax, y - height / 2., y + height / 2.)
average = (xmax+xmin)/2
px = 5
plt.plot(px,y, 'ro', ms = 15, mfc = 'r')
plt.annotate('Point', (px,y), xytext = (px+0.35, y+0.5),
horizontalalignment='right')
plt.text(xmin - 0.1, y, 'Left', horizontalalignment='right')
plt.text(xmax + 0.1, y, 'Right', horizontalalignment='left')
plt.axis('off')
plt.show()