[Matplotlib-users] SVG version of the data graph of the logo

2014-03-11 Thread Christophe Bal
Hello, it could be very useful for websites, and not only mine, to have a SVC of both the logo and only the data graph used in the logo. Is there at least a SVG downloadable version of the logo ? Best regards. Christophe BAL

Re: [Matplotlib-users] SVG version of the data graph of the logo

2014-03-11 Thread Oliver
Have you checked out the api logo2 examplehttp://matplotlib.org/examples/api/logo2.html ? It will allow you to have the logo in a variety of display formats. 2014-03-11 9:50 GMT+01:00 Christophe Bal projet...@gmail.com: Hello, it could be very useful for websites, and not only mine, to have

[Matplotlib-users] pickle error

2014-03-11 Thread jojo
Hi everyone, since matplotlib 1.3 matplotlib figures are pickle-able but when i try an example found on stackoverflow: import matplotlib.pyplot as plt import numpy as np import pickle ax = plt.subplot(111) x = np.linspace(0, 10) y = np.exp(x) plt.plot(x, y) pickle.dump(ax, file('myplot.pickle',