
# randScatter.py
# https://matplotlib.org/stable/plot_types/basic/scatter_plot.html#sphx-glr-plot-types-basic-scatter-plot-py
'''
  Plot a random distribution
'''

import random
import matplotlib.pyplot as plt

xs = [ random.gauss(0, 1) for _ in range(1000)] 
ys = [ random.gauss(0, 1) for _ in range(1000)]
plt.scatter(xs, ys, s=5)  # s is point size
plt.show()
