Re: [Matplotlib-users] wxPython 2.8

2007-01-21 Thread Ken McIvor
On Jan 21, 2007, at 11:04 AM, Allan Noriel Estrella wrote: > > does matplotlib already support wxPython 2.8? I have not had the opportunity to test it with 2.8. However, I am given to understand that it works. The one caveat is that you cannot presently compile the WXAgg accelerator with 2.8

[Matplotlib-users] wxPython 2.8

2007-01-21 Thread Allan Noriel Estrella
does matplotlib already support wxPython 2.8? - 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 topics through brief su

Re: [Matplotlib-users] bar plot with different filling patterns

2007-01-21 Thread John Hunter
> "Francesco" == Francesco Davide Calabrese <[EMAIL PROTECTED]> writes: Francesco> Hi, the following simple code (in Matlab syntax): Francesco> x1 = [5, 6] y1 = [3, 2] bar([1,2], [x1; y1]) Francesco> produces a bar plot where two of the bars have a color Francesco> (let's say

Re: [Matplotlib-users] class wx app question

2007-01-21 Thread Ken McIvor
On Jan 21, 2007, at 8:21 AM, Allan Noriel Estrella wrote: > > i found this code snippet in one example in matplotlib > > > i just want to ask what does app = App(0) mean, why do we need 0 > for an argument It explicitly disables the redirection of sys.stdout and sys.stderr. http://www.

[Matplotlib-users] class wx app question

2007-01-21 Thread Allan Noriel Estrella
i found this code snippet in one example in matplotlib class App(wx.App): def OnInit(self): 'Create the main window and insert the custom frame' frame = CanvasFrame() frame.Show(True) return True app = App(0) app.MainLoop() i just want to ask what does app = App