[Matplotlib-users] turning off tick marks

2010-06-17 Thread Jeff Perry
can someone tell me how to turn off the tick marks on my plot? i tried this [line.set_marker('None') for line in ax.get_xticklines()] but this turns off the labels too.  i don't want to turn off the labels, just the tick marks. someone also suggested this

Re: [Matplotlib-users] turning off tick marks

2010-06-17 Thread Benjamin Root
Try ax.set_xticks([]), I think that works for 2D plots. Ben Root On Thu, Jun 17, 2010 at 11:22 AM, Jeff Perry jef...@gmail.com wrote: can someone tell me how to turn off the tick marks on my plot? i tried this [line.set_marker('None') for line in ax.get_xticklines()] but this turns

Re: [Matplotlib-users] turning off tick marks

2010-06-17 Thread Ryan May
On Thu, Jun 17, 2010 at 11:39 AM, Benjamin Root ben.r...@ou.edu wrote: Try ax.set_xticks([]), I think that works for 2D plots. Nope, labels disappear. Jeff, try this: ax.xaxis.set_ticks_position('none') Ryan -- Ryan May Graduate Research Assistant School of Meteorology University of

Re: [Matplotlib-users] turning off tick marks

2010-06-17 Thread Eric Firing
On 06/17/2010 07:35 AM, Ryan May wrote: On Thu, Jun 17, 2010 at 11:39 AM, Benjamin Rootben.r...@ou.edu wrote: Try ax.set_xticks([]), I think that works for 2D plots. Nope, labels disappear. Jeff, try this: ax.xaxis.set_ticks_position('none') Ryan In [1]:plot([1,2])