[Matplotlib-users] mplot3d: large numbers scatter plot

2010-02-11 Thread D2Hitman
Hi, I was hoping to use mplot3d to visually examine the density of points in a 3D plot. However, the number of points i am displaying is of the order 10,000-100,000. I use scatter or scatter3D to plot x,y,z for the points. The pan and zoom functions become unworkable. Does anyone have any bright

Re: [Matplotlib-users] EPS with TeX

2009-08-12 Thread D2Hitman
Darren Dale-3 wrote: > > >> Is it a problem that it is using pdftex instead of pslatex? > > Yes. > > I am trying a few things in matplotlibrc, but cannot change from pdftex... Is there something obvious i am missing? If so what? Cheers. -- View this message in context: http://www.nabbl

[Matplotlib-users] EPS with TeX

2009-08-12 Thread D2Hitman
Hi, I am trying to use a text label with a new line in the middle and then save the figure to .eps text(0.5, 0.5, r'a \\ b') savefig('test.eps') This results in: RuntimeError: LaTeX was not able to process your file: Here is the full report generated by LaTeX: This is pdfTeX, Version 3.141592

Re: [Matplotlib-users] Ticks

2009-04-27 Thread D2Hitman
et the current axes > > for l in ax.get_xticklines() + ax.get_yticklines(): > l.set_markersize(10) > > plt.show() > > best regards Matthias > > On Monday 27 April 2009 12:15:24 D2Hitman wrote: >> I am looking to change the size/style of the tick markers. Not the label

[Matplotlib-users] Ticks

2009-04-27 Thread D2Hitman
I am looking to change the size/style of the tick markers. Not the labels associated with each tick, the dashes. How do i go about this? Cheers, Jon. -- View this message in context: http://www.nabble.com/Ticks-tp23253405p23253405.html Sent from the matplotlib - users mailing list archive at N

Re: [Matplotlib-users] pylab.close()

2008-11-15 Thread D2Hitman
gt;>>> you are using? >>>> >>> Mike, >>> >>> I was able to reproduce this with my ubuntu 8.10, gtkagg backend. I >>> ran the code via cut and paste with the stock python interpreter, not >>> ipython. I did not measure the

Re: [Matplotlib-users] pylab.close()

2008-11-14 Thread D2Hitman
openSUSE 11.0 (x86_64) KDE 3.5.9 "release 49.1" with GTKAgg backend Michael Droettboom-3 wrote: > > Can you provide more information about the platform and backend that you > are using? > > D2Hitman wrote: >> I am getting a memory leak when i am using the

[Matplotlib-users] pylab.close()

2008-11-13 Thread D2Hitman
I am getting a memory leak when i am using the pylab.close() function. I am running matplotlib-0.98.3. It happens in a very simple script such as: #!/usr/bin/python import time import pylab while True: time.sleep(1) print 'calling pylab' pylab.box() pylab.close() Every close see