Is there a way to save a matplotlib figure such that it can be re-opened and have typical interaction restored? (Like the .fig format in matlab?)

I find myself running the same scripts many times to generate these interactive figures. Or I'm sending my colleagues multiple static pngs to show different aspects of a plot. I'd rather send the figure object and have them interact with it themselves.

link|improve this question

56% accept rate
feedback

3 Answers

up vote 5 down vote accepted

This would be a great feature, but AFAIK it isn't implemented in matplotlib; and likely would be difficult to implement yourself due to the way figures are stored.

I'd suggest either (a) separate processing the data from generating the figure (which saves data with a unique name) and write a figure generating script (loading a specified file of the saved data) and editing as you see fit or (b) save as PDF/SVG/PS format and edit in some fancy figure editor like adobe illustrator (or inkscape).

link|improve this answer
Somewhat surprised this isn't implemented.. But ok, I'll save the processed data in an intermediate file and send that and a script for plotting to colleagues. Thanks. – Matt Ball Dec 6 '10 at 18:31
1  
I suspect implementation is hard, which is why it works so poorly an MATLAB. Back when I used it, figures used to crash MATLAB, and even slightly different versions were not able to read each others .fig files. – Adrian Ratnapala Oct 11 '11 at 10:09
feedback

Why not just send the python script? Matlab's .fig files require the recipient to have Matlab to display them, so that's about equivalent to sending a python script that requires Matplotlib to display.

Alternatively, (disclaimer: I haven't tried this yet) you could try pickling the figure:

import pickle
output = open('interactive figure.pickle', 'wb')
pickle.dump(gcf(), output)
output.close()
link|improve this answer
2  
Unfortunately, matplotlib figures aren't pickleable, so that approach won't work. Behind the scenes, there are too many C extensions that don't support pickling. I completely agree on just sending the script + data, though... I guess I've never really seen the point of matlab's saved .fig's, so I never used them. Sending someone stand-alone code and data has been the easiest in the long run, in my experience, anyway. Still, it would be nice if matplotlib's figure objects where pickleable. – Joe Kington Dec 4 '10 at 4:04
Even our preprocessed data is somewhat large and the plotting procedure is complex. Looks like the only recourse though. thanks. – Matt Ball Dec 6 '10 at 18:34
feedback

Good question. Here is the doc text from pylab.save:

pylab no longer provides a save function, though the old pylab function is still available as matplotlib.mlab.save (you can still refer to it in pylab as "mlab.save"). However, for plain text files, we recommend numpy.savetxt. For saving numpy arrays, we recommend numpy.save, and its analog numpy.load, which are available in pylab as np.save and np.load.

link|improve this answer
This saves the data from the a pylab object, but doesn't allow you to regenerate the figure. – dr jimbob Dec 3 '10 at 19:06
Correct. I ought to clarify that the answer was not a recommendation to use pylab.save. In fact, from the doc text, it appears that one should not use it. – Steve Tjoa Dec 3 '10 at 20:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.