Re: [Matplotlib-users] 3d plotting without ticklabels

2010-08-03 Thread Benjamin Root
On Mon, Jun 14, 2010 at 2:14 AM, Ola Skavhaug skavh...@simula.no wrote: On Fri, Jun 11, 2010 at 4:50 PM, Benjamin Root ben.r...@ou.edu wrote: Ola, Just to make sure, have you tried ax.set_xticks([])? Yes, I have tried that, but without success. Looks like the tick-logic is overridden

Re: [Matplotlib-users] 3d plotting without ticklabels

2010-08-03 Thread Jae-Joon Lee
On Wed, Aug 4, 2010 at 12:11 AM, Benjamin Root ben.r...@ou.edu wrote: I have done some further research on this, and it appears to be a bug of some sort.  Possibly the Locators are already made by the time the ax.set_xticks([]) is called and that function falls on deaf ears because the real

Re: [Matplotlib-users] 3d plotting without ticklabels

2010-07-31 Thread skorpio11
Bump. Is this possible using mplot3d?? I would, also like to turn off the ticks and the tick labels. skavhaug wrote: On Fri, Jun 11, 2010 at 4:50 PM, Benjamin Root ben.r...@ou.edu wrote: Ola, Just to make sure, have you tried ax.set_xticks([])? Yes, I have tried that, but without

Re: [Matplotlib-users] 3d plotting without ticklabels

2010-06-14 Thread Ola Skavhaug
On Fri, Jun 11, 2010 at 4:50 PM, Benjamin Root ben.r...@ou.edu wrote: Ola, Just to make sure, have you tried ax.set_xticks([])? Yes, I have tried that, but without success. Looks like the tick-logic is overridden for 3d plotting. Or at least, I cannot figure out how it works. Ola Ben Root

[Matplotlib-users] 3d plotting without ticklabels

2010-06-11 Thread Ola Skavhaug
Hi, I'm trying to remove the xtickmarks and ytickmarks from a 3d plot, without any success. The example I experiment with is the following: from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt fig = plt.figure() ax = axes3d.Axes3D(fig) X, Y, Z = axes3d.get_test_data(0.05)

Re: [Matplotlib-users] 3d plotting without ticklabels

2010-06-11 Thread Benjamin Root
Ola, Just to make sure, have you tried ax.set_xticks([])? Ben Root On Fri, Jun 11, 2010 at 3:05 AM, Ola Skavhaug skavh...@simula.no wrote: Hi, I'm trying to remove the xtickmarks and ytickmarks from a 3d plot, without any success. The example I experiment with is the following: from