Example 1: how to plot a graph using matplotlib
from matplotlib import pyplot as plt
plt.plot([0, 1, 2, 3, 4, 5], [0, 1, 4, 9, 16, 25])
plt.show()
Example 2: 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 3: 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 4: import pyplot python
import matplotlib.pyplot as plt
Example 5: plot using matplotlib
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4])
plt.ylabel('some numbers')
plt.show()
Example 6: pyplot python
import numpy as np
import matplotlib.pyplot as plt
x = np.array([1, 3, 4, 6])
y = np.array([2, 3, 5, 1])
plt.plot(x, y)
plt.show()