Hello all,

I can create a figure
and get the corresponding axes/plotsĀ 

for examples:
1/

fig = Figure(figsize=(width, height), dpi=dpi)
ax = gif.add_subplot(111)

2/
fig, ax = plt.subplots()

but I would like to create my plot independently from the figure and assign it 
to a figure

I code I would like to do something like this

my_ax = Axes(...)
my_ax.plot(x,y)


ax = my_ax

or 


my_ax.set_figure(fig)

How can I create the axes/plot object independently from the figure?
Better yet, how can I assign an axe to a figure?
--
Emmanuel
------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to