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
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
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
> >
> > 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
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
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
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
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