matplotlib plot from array code example
Example 1: 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 2: pyplot x vs y
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])