i'm trying to use a custom matplotlib-style
But it does not work:
As mentioned here:
http://matplotlib.org/users/style_sheets.html
i tried the following:
import matplotlib.pyplot as plt
print plt.style.available
matplotlib.pyplot
works fine. But it keeps saying that style is not defined.
>>> import matplotlib.pyplot as plt
>>> print plt.style.available
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'style'
What is the solution?
It is Mac Os X Yosemite and it is installed as Administrator in the default location.
Styles are a very recent feature of matplotlib
, introduced in version 1.4.
If your version of matplotlib is up-to-date then you are suffering from a bug of the installation procedure
If your version is older than 1.4 then it is not expected that you have style sheets installed.
To look at your version, do the following (my matplotlib
is old...)
>>> import matplotlib
>>> matplotlib.__version__
'1.3.1'
>>>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With