import random | |
import numpy | |
from matplotlib import pyplot | |
rs = numpy.random.randn(1000) | |
xs = rs[1:-1] - rs[:-2] | |
ys = rs[2:] - rs[1:-1] | |
pyplot.scatter(xs, ys) | |
pyplot.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Plots this: