Re: [Matplotlib-users] axis not accepting keyword arguments any longer?

2007-01-25 Thread John Hunter
Samuel == Samuel M Smith [EMAIL PROTECTED] writes: Samuel I have the same problem Did you notice my response then? John This is a bug -- thanks for reporting it. I just committed John changes to svn to fix it. Ie, it is a bug that is fixed and you must use the svn version of

Re: [Matplotlib-users] pylab crashes python

2007-01-25 Thread Christopher Barker
Jan Winter wrote: hi, I use python 2.4, matplotlib and WXpython on OS X. I plot and show something and every thing works fine (the plot is shown in the python.app). I close the plot window. I plot another thing. It is shown again with python.app, but now python.app crashes... I'm not

[Matplotlib-users] dvipng version error running matplotlib on windows

2007-01-25 Thread bernski
I am getting a dvipng version error when I run: import Numeric,matplotlib matplotlib.use('Agg') from matplotlib import rc rc('text', usetex=True) import pylab pylab.figure(num=1,figsize=(6,4)) pylab.plot(Numeric.arange(10), Numeric.arange(10)**2) pylab.axis( (0,9,0,81) )

[Matplotlib-users] pylab crashes python

2007-01-25 Thread Jan Winter
hi, I use python 2.4, matplotlib and WXpython on OS X. I plot and show something and every thing works fine (the plot is shown in the python.app). I close the plot window. I plot another thing. It is shown again with python.app, but now python.app crashes... every second plot causes a crash

Re: [Matplotlib-users] pylab crashes python

2007-01-25 Thread Ken McIvor
Jan, What versions of wxPython and matplotlib are you using? Ken - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT business

[Matplotlib-users] bar charts

2007-01-25 Thread Margherita Vittone wiersma
Hello, i have made bar charts but I was wondering if there is a way to show on top of each bar the real content/counts, like a label; I generate static plots so the dynamic showing of the counts on focusing on the bar does not help me. Thank you much for some feedback. best regards Margherita

Re: [Matplotlib-users] dvipng version error running matplotlib on windows

2007-01-25 Thread Darren Dale
On Tuesday 23 January 2007 20:09, bernski wrote: I am getting a dvipng version error when I run: import Numeric,matplotlib matplotlib.use('Agg') from matplotlib import rc rc('text', usetex=True) import pylab pylab.figure(num=1,figsize=(6,4)) pylab.plot(Numeric.arange(10),

Re: [Matplotlib-users] pylab crashes python

2007-01-25 Thread Lou Pecora
I found an example script I got to work for WX. I guessed that the ws.app had to be deleted to plot again. Here it is (the part that runs the code and creates the WX.app: if __name__ == '__main__': app = wx.PySimpleApp(0) frame = PlotFigure() frame.plot_data() frame.Show()