Re: [Matplotlib-users] [mplot3d] remove background

2010-11-28 Thread Nicolas Pinto
Thanks for the quick reply Ben. Let me know how I can help. Regards, N On Sun, Nov 28, 2010 at 6:54 PM, Benjamin Root wrote: > On Sunday, November 28, 2010, Nicolas Pinto wrote: >> Dear all, >> >> I'm trying to get rid of the mplot3d background (in vain, see be

[Matplotlib-users] [mplot3d] remove background

2010-11-28 Thread Nicolas Pinto
Dear all, I'm trying to get rid of the mplot3d background (in vain, see below), how can I do this? Thanks for your help. Best, Nicolas demo: from mpl_toolkits.mplot3d import axes3d, axis3d import matplotlib.pyplot as plt import numpy as np fig = plt.figure() ax = axes3d.Axes3D(fig) for axis

Re: [Matplotlib-users] FYI, typo

2009-08-21 Thread Nicolas Pinto
scover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > ___ > Matplotlib-users mailing list > Matplotlib-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > > -- Nicolas Pinto Ph.D. Ca

[Matplotlib-users] Using spines and set_yscale

2009-08-04 Thread Nicolas Pinto
, x, align='center') ax.spines["left"].set_position(("outward", 10)) ax.set_yscale('log') ax = fig.add_subplot(224) ax.set_yscale('log') ax.bar(range(len(x)), x, align='center') ax.spines["left"].set_position(("outward&quo

Re: [Matplotlib-users] How to get ticks "out" using mpl_toolkits.axes_grid.axislines ?

2009-07-23 Thread Nicolas Pinto
> > I'll try to improve this in the future. > > On the other hand, you may take a look at the recently added "spine" > support in the main matplotlib. > > > http://matplotlib.sourceforge.net/examples/pylab_examples/spine_placement_demo.html > > If you use

[Matplotlib-users] How to get ticks "out" using mpl_toolkits.axes_grid.axislines ?

2009-07-23 Thread Nicolas Pinto
, 1) fig.add_subplot(ax) # make xzero axis (horizontal axis line through y=0) visible. ax.axis["xzero"].set_visible(True) ax.axis["xzero"].label.set_text("Axis Zero") # make other axis (bottom, top, right) invisible. for n in ["bottom", "top", &quo