[Matplotlib-users] xticklabels question

2007-03-18 Thread Allan Noriel Estrella
I have an array of data that were sampled with a sampling rate of 1.5625samples/sec . I want to plot these data with the x axis showing time in terms of hours for the major ticks and minutes for the minor ticks in my custom made wx App. I have been fiddling around with the HourLocator and MinuteLo

[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

[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

[Matplotlib-users] matplotlib and wxmsw26uh_vc.dll

2007-01-05 Thread Allan Noriel Estrella
Philippe Fremy first, install the unicode version of wxPython since matplotlib is compiled using it. then add that dll in the variable to be passed to the data_files argument of setup, something like this: matplotlibdata_files.append(('',['E:\\Python25\\Lib\\site-packages\\wx- 2.6-msw-unicode\\wx

[Matplotlib-users] missing dll error

2006-12-30 Thread Allan Noriel Estrella
when running the embedding_in_wx4.py available in the examples.zip i always get an error dialog that a wxmsw26uh_vc.dll is missing. Pressing ok button of the error dialog makes the program run as usual. When I modified the code and added the line "from pylab import *" the program does not give the

[Matplotlib-users] freezing matplotlib

2006-12-25 Thread Allan Noriel Estrella
Has anyone tried freezing matplotlib embedded in a wx app (using py2ece, cx_freeze or pyinstaller)? The setup.py in the FAQ seems to be outdated. I want to freeze the embedding_in_wx.py in the examples. Do you have any suggestions or cookbook steps that I can follow? --