In an ipython notebook, I used a matplotlib stylesheet to change the look of my plots using
from matplotlib.pyplot import * %matplotlib inline style.use(\'g
There actually is a default. But it's not listed under plt.style.available. Simply run :
default
plt.style.available
plt.style.use('default')
It returns the style to the default Matplotlib settings in, for instance, Jupyter Notebook.