Re: [Matplotlib-users] Removing axes

2010-01-26 Thread Michael Cohen
Great, that worked. Michael On 1/26/2010 2:35 PM, Jae-Joon Lee wrote: > There are a few ways to make ticks invisible. > > ax = subplot(111, frame_on=False) > ax.xaxis.set_ticks_position("none") > ax.yaxis.set_ticks_position("none") > > regards, > > -JJ > > > On Tue, Jan 26, 2010 at 5:28 PM, Micha

Re: [Matplotlib-users] Removing axes

2010-01-26 Thread Jae-Joon Lee
There are a few ways to make ticks invisible. ax = subplot(111, frame_on=False) ax.xaxis.set_ticks_position("none") ax.yaxis.set_ticks_position("none") regards, -JJ On Tue, Jan 26, 2010 at 5:28 PM, Michael Cohen wrote: > Sorry, I should be clearer. > Inside the plot, I have made a shape, say

Re: [Matplotlib-users] Removing axes

2010-01-26 Thread Jae-Joon Lee
You mean removing the the axes frame? subplot(111, frame_on=False) I'm sorry but it is not clear what you want. Regards, -JJ On Tue, Jan 26, 2010 at 4:18 AM, Michael Cohen wrote: > Hi all, > Thanks for the help so far.  One more question - > How do I completely remove the axes? > I currentl

[Matplotlib-users] Removing axes

2010-01-26 Thread Michael Cohen
Hi all, Thanks for the help so far. One more question - How do I completely remove the axes? I currently have a plot where a square hatching of lines is deformed to create a sky projection, so the square block of axes actually gets in the way. How do I remove it? Cheers Michael --