|
From: Jae-Joon L. <lee...@gm...> - 2011-09-15 00:35:10
|
On Thu, Sep 15, 2011 at 5:08 AM, Youngung Jeong <you...@gm...> wrote: > But it only gives one axis added to 'fig.axes'. > Is there any work-around? Or am I missing some other feature of matplotlib? Somehow, this is not clearly documented for the subplot command. You need to use label parameter to create multiple axes at a same position (for more details, http://matplotlib.sourceforge.net/api/figure_api.html#matplotlib.figure.Figure.add_axes) axr=fig.add_subplot(1,1,1, label="r") axp=fig.add_subplot(1,1,1,projection='polar', label="p") Regards, -JJ |