Re: [Matplotlib-users] Looking for a way to save a graph

2007-11-05 Thread Fabrice Silva
Le vendredi 24 août 2007 à 11:30 +0200, David Tremouilles a écrit : > OK I see... nothing straightforward... > > Best way for me is maybe to implement such a system myself: > The system would collect the information to be saved by kind of > introspection of the figure. > I'm planning to save data

Re: [Matplotlib-users] Looking for a way to save a graph

2007-08-24 Thread Fernando Perez
On 8/24/07, David Tremouilles <[EMAIL PROTECTED]> wrote: > OK I see... nothing straightforward... > > Best way for me is maybe to implement such a system myself: > The system would collect the information to be saved by kind of > introspection of the figure. > I'm planning to save data and plot pro

Re: [Matplotlib-users] Looking for a way to save a graph

2007-08-24 Thread David Tremouilles
OK I see... nothing straightforward... Best way for me is maybe to implement such a system myself: The system would collect the information to be saved by kind of introspection of the figure. I'm planning to save data and plot properties in an hdf5 file. Kind of inverted process will be used to re

Re: [Matplotlib-users] Looking for a way to save a graph

2007-08-23 Thread Bryan Cole
> > > > I am but a humble newbie, but why not simply take your figure > > object/reference and Pickle it (see > > http://docs.python.org/lib/module-pickle.html)? > > > > Won't work. Pickling only works for objects that have been designed for > it. Such design is not trivial for extension cod

Re: [Matplotlib-users] Looking for a way to save a graph

2007-08-23 Thread Eric Firing
Alex Pounds wrote: > On Thu, August 23, 2007 5:33 pm, David Tremouilles wrote: >> I would like to save a matplotlib figure (data, title and axes label, >> plot properties, ...) to load it later on for modification. Something >> like figure.savelall("file.matplot") and later on do a >> figure.load

Re: [Matplotlib-users] Looking for a way to save a graph

2007-08-23 Thread John Hunter
On 8/23/07, Alex Pounds <[EMAIL PROTECTED]> wrote: > On Thu, August 23, 2007 5:33 pm, David Tremouilles wrote: > > I would like to save a matplotlib figure (data, title and axes label, > > plot properties, ...) to load it later on for modification. Something > > like figure.savelall("file.matplot

Re: [Matplotlib-users] Looking for a way to save a graph

2007-08-23 Thread Alex Pounds
On Thu, August 23, 2007 5:33 pm, David Tremouilles wrote: > I would like to save a matplotlib figure (data, title and axes label, > plot properties, ...) to load it later on for modification. Something > like figure.savelall("file.matplot") and later on do a > figure.loadall("file.matplot") usin

[Matplotlib-users] Looking for a way to save a graph

2007-08-23 Thread David Tremouilles
Hello, I would like to save a matplotlib figure (data, title and axes label, plot properties, ...) to load it later on for modification. Something like figure.savelall("file.matplot") and later on do a figure.loadall("file.matplot") using an empty figure. Did somebody already implement such a