最佳答案
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('ggplot')
My version of matplotlib is 1.4.0. How do I go back to the default matplotlib styling? I tried all the available styles in
print style.available
but there doesn't seem to be a "default" option. I also tried
matplotlib.rcdefaults()
For some reason, this gives me a gray background. It also changes the text from gray (ggplot style) to black, which may be the default, but also could be another random style.