Said libraries include NumPy, Pandas and Matplotlib so here they are. I'm sure what I posed here definitely isn't everything there is about the libraries and there is a good chance that I may just be ...
import matplotlib.pyplot as plt import numpy as np N = 3000000 x = np.random.random(N) y = np.random.random(N) c = np.random.random((N, 3)) # RGB plt.scatter(x, y, 1, c, '.') plt.show() The initial ...