Simple plots using mybinder.org

Activating this page will connect to the public my binder service at https://mybinder.org, launch a server and connect to a `python3` kernel.

import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline

fig, ax = plt.subplots()
ax.scatter(*np.random.randn(2, 100), c=np.random.randn(100))
ax.set(title="Wow, a python plot on my webpage!")