Re: [Matplotlib-users] wxbackend scroll_event trouble

2015-10-05 Thread Werner
OSX issue? Werner -- ___ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Re: [Matplotlib-users] Missing Module: six ?

2015-02-13 Thread Werner
html?highlight=requirements You should be able to install them with 'pip' - e.g. 'pip install six' numpy is a bit more of a hazzle, in the past Christoph Gohlke's site had .exe's but there are now wheels, so you need to download the correct one (win32 and py3.4

Re: [Matplotlib-users] python3 and basemap bluemarble()

2014-10-17 Thread Werner
uses PIL. http://pillow.readthedocs.org/porting-pil-to-pillow.html Werner -- Comprehensive Server Monitoring with Site24x7. Monitor 10 servers for $9/Month. Get alerted through email, SMS, voice calls or mobile push noti

[Matplotlib-users] 1.4 install on Windows 8.1 with pip gives bad hash

2014-08-27 Thread Werner
tps://pypi.python.org/simple/matplotlib/) (b3547692387bce383d7a001a8e03ce87) doesn't match the e xpected hash 1daf7f2123d94745feac1a30b210940c! Cleaning up... Werner P.S. I installed using the .exe installer without

Re: [Matplotlib-users] Qt4Agg backend possible bug

2014-06-05 Thread Werner
> Thanks, Using 'six' for just the above case is definitely overkill, but it has many more goodies in it to make py2/py3 single source code easier. Werner -- Learn Graph Databases - Download FREE O'Re

Re: [Matplotlib-users] Qt4Agg backend possible bug

2014-06-05 Thread Werner
> # qt delivers capitalized letters. fix capitalization > # note that capslock is ignored > if 'shift' in mods: You would use 'six' - https://pypi.python.org/pypi/six it is used

Re: [Matplotlib-users] What backends are working with python 3

2014-06-05 Thread Werner
snapshot-builds/ wxPython_Phoenix Werner -- Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaim

[Matplotlib-users] stacked bar and a table

2014-01-14 Thread Werner
' and played with the font size but with no success. Would appreciate any tips on what I may do wrong or what else I need to do to have things show correctly. Werner P.S. This is with MPL 1.3.1, with numpy 1.6.1 on Py2.7 32bit on Win7

Re: [Matplotlib-users] Matplotlib installation with Python(x,y)

2013-10-03 Thread Werner F. Bruhin
yout Does this give an import error? If above does not give an import error can you try: c:\Python26\python.exe folder_with_matplot_examples/user_interfaces/embedding_in_qt4.py If this works then I am guessing that your 'file.py' does somehow

Re: [Matplotlib-users] Matplotlib installation with Python(x,y)

2013-10-02 Thread Werner F. Bruhin
Hi Antonio, (forgot to copy list - for archive) On 02/10/2013 17:05, António de Sousa wrote: Hi Werner, thank you for your reply. Yes, the path is C:\Python26\lib\ Can it be that the error message is coming from a different location? Meaning that there may be duplicate files (e.g. python

Re: [Matplotlib-users] wxPython Phoenix - backend_wxagg

2013-05-03 Thread Werner F. Bruhin
tandem... agg.bufferNEW_rgba or something along those lines and then GUI frameworks could move when they want/can, or would that create to big of an overhead on MPL side. Werner -- Get 100% visibility into Java/.NET code

Re: [Matplotlib-users] wxPython Phoenix - backend_wxagg

2013-04-27 Thread Werner F. Bruhin
Hi Michael, On 26/04/2013 14:40, Michael Droettboom wrote: On 04/26/2013 02:57 AM, Werner F. Bruhin wrote: Hi, Anyone can provide some info on what "agg.buffer_rgba" returns and maybe even some suggestion on how to resolve this issue in the wxagg backend. It returns a Python buffer

Re: [Matplotlib-users] wxPython Phoenix - backend_wxagg

2013-04-25 Thread Werner F. Bruhin
Hi, Anyone can provide some info on what "agg.buffer_rgba" returns and maybe even some suggestion on how to resolve this issue in the wxagg backend. Thanks Werner P.S. The archive on Sourceforge for this list stops in June 2012, noticed this as I wanted to check if there are answer

[Matplotlib-users] wxPython Phoenix - backend_wxagg

2013-04-19 Thread Werner F. Bruhin
buffer_rgba() type(agg.buffer_rgba()) agg If I don't use "memoryview" (which would probably be preferred) I get the following exception. Can someone help us figure this one out. Thanks Werner TypeError: Bitmap.FromBufferRGBA(): argument 3 has unexpected type 'buffer

Re: [Matplotlib-users] Trying to migrate to Python 3.2, Matplotlib 1.2.1

2013-04-19 Thread Werner F. Bruhin
n', There are a few EmptyBitMap creates which need to be changed to: if 'phoenix' in wx.PlatformInfo: self.bitmap = wx.Bitmap(w, h) else: self.bitmap = wx.EmptyBitmap(w, h) But now I am stuck on the following exception and I haven&#x

Re: [Matplotlib-users] MPL 1.2.0 crash with py2exe on Athlon PC

2013-03-12 Thread Werner F. Bruhin
9) and the setup.py script I used to generated the py2exe'd version. The py2exe'd version works without problem on my Intel Core i5 but crashes on an AMD Athlon 2400+ equiped PC. Anyone has some tips, ideas on how to track this down? Best regards Werner On 11/03/2013 20:02, Werner

[Matplotlib-users] MPL 1.2.0 crash with py2exe on Athlon PC

2013-03-11 Thread Werner F. Bruhin
don't provide a lot of information (at least not yet), but has anyone come across some similar crash with py2exe and mpl when one creates a Figure? Any tips on how to further narrow this down or even better on what is needed to fix it are very welcome. Best regards Werner

Re: [Matplotlib-users] 0.99.1 crashes python on Windows XP [SEC=UNCLASSIFIED]

2012-04-18 Thread Werner F. Bruhin
On 18/02/2010 22:41, Werner F. Bruhin wrote: > Using numpy with "/arch nosse" solved the issue. > > Probably OT here, but does anyone know if numpy will in the future be > able to dynamically switch on/off the SSEx support? I am running again into crashes with matplotl

[Matplotlib-users] RuntimeError: failed to gain raw access

2010-12-08 Thread Werner F. Bruhin
, float( pixels[1] )/self.figure.get_dpi() ) What could the cause of this error be? Werner -- What happens now with your Lotus Notes apps - do you make another costly upgrade, or se

Re: [Matplotlib-users] text element just above previous text element

2010-11-09 Thread Werner F. Bruhin
Finally figured it out after pulling some hear. Using "axes.annotate" instead of "axes.text" worked for me, i.e. something like this: axes.annotate(hstr, xy=(xCorr, yCorr), xytext=(0, 5), textcoords='offset points') instead of what I did originally. Werner

[Matplotlib-users] text element just above previous text element

2010-11-08 Thread Werner F. Bruhin
ks. Can anyone please push me in the right direction. Werner -- The Next 800 Companies to Lead America's Growth: New Video Whitepaper David G. Thomson, author of the best-selling book "Blueprint to a Billion

Re: [Matplotlib-users] PY2EXE with Matplotlib and wxPython compiles but won't run???

2010-05-20 Thread Werner F. Bruhin
On 19/05/2010 20:45, David wrote: > Werner F. Bruhin writes: > > >> >> On 19/05/2010 19:55, David Grudoski wrote: >> >>I'm trying to build an executable using >> PY2EXE; running Python 2.5.2 and wxPython 2.8.10.1 and MatplotLib 0.99

Re: [Matplotlib-users] PY2EXE with Matplotlib and wxPython compiles but won't run???

2010-05-19 Thread Werner F. Bruhin
om of this page: http://www.py2exe.org/index.cgi/MatPlotLib Werner -- ___ Matplotlib-users mailing list Matplotlib-users@lists.sourceforge.net https://lists.sourceforge.net

Re: [Matplotlib-users] py2exe and matplotlib errors when executing exe

2010-05-19 Thread Werner F. Bruhin
closes without > giving me the chance to read it, anybody know how to stop the window from > closing so quickly > You have probably set "wx.App(redirect=True)", change to "False" and then you s

[Matplotlib-users] Tick label on left and right for yaxis?

2010-03-18 Thread Werner F. Bruhin
Looking at set_ticks_position doc it says that "default" will reset ticks to be on both sides and labels on left, and set_label_position only allows for left or right. Is there any way to have ticks and ticks labels on both left and righ

Re: [Matplotlib-users] py2exe problems for a tkinter/matpotlib project - works for me, but not for others

2010-03-15 Thread Werner F. Bruhin
On 15/03/2010 14:37, Kim Hansen wrote: Hi Werner 2010/3/15 Werner F. Bruhin <mailto:werner.bru...@free.fr>> Hi Kim, Changing the line 560 in mathtext.py from: font = FT2Font(basename) to: font = FT2Font(str(basename)) Fixed it for me

Re: [Matplotlib-users] py2exe problems for a tkinter/matpotlib project - works for me, but not for others

2010-03-15 Thread Werner F. Bruhin
ified as you are using matplotlib 0.99. Werner ''' Created on 25/01/2010 @author: kha ''' from distutils.core import setup import py2exe import shutil # We need to import the glob module to search for all files. import glob # Remove the build and dist folder, old s

Re: [Matplotlib-users] 0.99.1 crashes python on Windows XP [SEC=UNCLASSIFIED]

2010-02-18 Thread Werner F. Bruhin
Using numpy with "/arch nosse" solved the issue. Probably OT here, but does anyone know if numpy will in the future be able to dynamically switch on/off the SSEx support? Werner On 18/02/2010 17:31, Werner F. Bruhin wrote: > On 18/02/2010 15:12, Werner F. Bruhin wrote: >

Re: [Matplotlib-users] 0.99.1 crashes python on Windows XP [SEC=UNCLASSIFIED]

2010-02-18 Thread Werner F. Bruhin
On 18/02/2010 15:12, Werner F. Bruhin wrote: > Hi Everyone, > > On 08/10/2009 06:54, ross.wil...@ga.gov.au wrote: > >> Hi Listers, >> >> I recently installed matplotlib 0.99.1 hoping to use mplot3d. However, when >> doing 'from mpl_toolkits.mpl

Re: [Matplotlib-users] 0.99.1 crashes python on Windows XP [SEC=UNCLASSIFIED]

2010-02-18 Thread Werner F. Bruhin
re is not much to go by here, but would very much appreciate if anyone has some hints/tips on what I should look at (note that the client is non technical and I have no access to his machine). Werner -- Download Intel®

Re: [Matplotlib-users] Py2.5.4 on Win7

2009-10-24 Thread Werner F. Bruhin
Werner F. Bruhin wrote: > Installed Py 2.6.3 and I don't see the issue there, but not all > libraries I use are on 2.6 yet. > > So, I thought lets install Python(x, y) and give this a try, but I can't > find a Python 2.5.x version of it - is this still available? &

Re: [Matplotlib-users] Py2.5.4 on Win7

2009-10-24 Thread Werner F. Bruhin
script and running it again directly with Python I see the error again. What could cause this? Maybe one of the msvcp71.dll is incompatible with stuff already loaded by Python? Will keep experimenting and see if I can get Boa to work with mpl Werner --

Re: [Matplotlib-users] Py2.5.4 on Win7

2009-10-24 Thread Werner F. Bruhin
Installed Py 2.6.3 and I don't see the issue there, but not all libraries I use are on 2.6 yet. So, I thought lets install Python(x, y) and give this a try, but I can't find a Python 2.5.x version of it - is this still available? Werner P.S. Will totally de-install 2.5 again and try

Re: [Matplotlib-users] Py2.5.4 on Win7

2009-10-23 Thread Werner F. Bruhin
Hi Stan, Stan West wrote: From: Werner F. Bruhin [mailto:werner.bru...@free.fr] Sent: Friday, October 23, 2009 07:31 I am just installing Windows 7 Pro and I am running into a problem with matplotlib. When running e.g. barchart_demo.py I get an error that it can not find msvcp71

[Matplotlib-users] Py2.5.4 on Win7

2009-10-23 Thread Werner F. Bruhin
7 Pro # Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit (Intel)] # wxPython 2.8.10.1 (unicode), Boa Constructor 0.6.1 matplotlib.__version__ '0.99.1' Werner P.S. Installed Python for all users - will try installing for me only

Re: [Matplotlib-users] does mpl.canvas has a flag "needsdrawing"?

2009-09-18 Thread Werner F. Bruhin
Hi Jae-Joon, Jae-Joon Lee wrote: > My guess is that the error happens when the matplotlib tries to format > the date ticklabels when the xlim is not correctly set, i.e., [0, 1] > in the example. But, I'm not sure what is the best approach here. > > Werner, if there is nothin

Re: [Matplotlib-users] does mpl.canvas has a flag "needsdrawing"?

2009-09-18 Thread Werner F. Bruhin
John Hunter wrote: > On Fri, Sep 18, 2009 at 8:15 AM, Werner F. Bruhin > wrote: > >> John Hunter wrote: >> >>> We want a complete, free standing example that exposes the bug, with any >>> additional info like mpl backend and version number. >

Re: [Matplotlib-users] does mpl.canvas has a flag "needsdrawing"?

2009-09-18 Thread Werner F. Bruhin
does not use, but the exception is the same as I get in my code when I call draw. Hope this helps Werner On Sep 18, 2009, at 7:43 AM, "Werner F. Bruhin" wrote: John, John Hunter wrote: On Fri, Sep 18, 2009 at 4:39 AM, Werner F. Bruhin wrote: I have multiple canvas and someti

Re: [Matplotlib-users] does mpl.canvas has a flag "needsdrawing"?

2009-09-18 Thread Werner F. Bruhin
John, John Hunter wrote: > On Fri, Sep 18, 2009 at 4:39 AM, Werner F. Bruhin > wrote: > >> I have multiple canvas and sometimes one or more might have nothing to >> draw (no data). >> >> Currently I just call. >> >> canvas.draw() >> canv

[Matplotlib-users] does mpl.canvas has a flag "needsdrawing"?

2009-09-18 Thread Werner F. Bruhin
create my own? Werner PS If it is of any help, I get this (also I have mpl.verbose.level = u'silent': C:\Python25\lib\site-packages\matplotlib\axes.py:3996: UserWarning: No labeled objects found. Use label='...' kwarg on individual plots. warnings.warn("No labeled o

Re: [Matplotlib-users] matplotlib 0.99.1rc1 available for testing

2009-09-17 Thread Werner F. Bruhin
Eric, Eric Firing wrote: > Werner, > >>> Instead, it looks to me like the best solution is the one you >>> provided at the very bottom of >>> http://www.py2exe.org/index.cgi/MatPlotLib. >> I am happy with what ever change is done as long as it also work

Re: [Matplotlib-users] matplotlib 0.99.1rc1 available for testing

2009-09-15 Thread Werner F. Bruhin
le > version check. Unless I misread the code it just wants to ensure that at least version 2.8 is used, this could be done using any of the above variables. Only things wxversion is doing in addition is to propose to download and for a developer if h

Re: [Matplotlib-users] matplotlib 0.99.1rc1 available for testing

2009-09-15 Thread Werner F. Bruhin
John, John Hunter wrote: > On Mon, Sep 14, 2009 at 10:13 AM, Werner F. Bruhin > wrote: > > >> Just installed it on Vista and saw the following issues so far. >> > > Hey Werner, thanks for the reports. > You are welcome - anyhow I think it would be more

Re: [Matplotlib-users] matplotlib 0.99.1rc1 available for testing

2009-09-14 Thread Werner F. Bruhin
ion is py2exe'd - tracker item 2858638 added and the above wiki page also contains a work around/correction suggestion. Werner -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplif

Re: [Matplotlib-users] mpl 0.99 and py2exe

2009-09-10 Thread Werner F. Bruhin
Jouni K. Seppänen wrote: > "Werner F. Bruhin" writes: > > >>> I think this has been fixed on the trunk for good, by changing all >>> docstring modifications to use decorators (defined in docstring.py) that >>> check for nonexistent docstrings. T

Re: [Matplotlib-users] mpl 0.99 and py2exe

2009-09-09 Thread Werner F. Bruhin
Werner F. Bruhin wrote: > I have run into a bit of problem using 0.99 and py2exe. > > I am getting errors "TypeError: unsupported operand type(s) for +=: > 'NoneType' and 'str'" in mlab.pyo after py2exe'd my application. > > This is caused by

[Matplotlib-users] mpl 0.99 and py2exe

2009-09-09 Thread Werner F. Bruhin
how to correct this in a way which would get accepted as a patch I would search all modules correct them. Werner -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your r

Re: [Matplotlib-users] Pareto diagram - align cumulative percentage marker in the middle of the bars

2009-08-26 Thread Werner F. Bruhin
Chris, Christopher Barker wrote: > Werner F. Bruhin wrote: >> The other problem I have is that the xtick_labels are cut off at the >> bottom when the frame is resized below a certain size. How can I >> prevent this? > > I don't think MPL yet has a system fo

Re: [Matplotlib-users] Pareto diagram - align cumulative percentage marker in the middle of the bars

2009-08-25 Thread Werner F. Bruhin
Jouni K. Seppänen wrote: > "Werner F. Bruhin" writes: > > >> I trying to create a Pareto diagram and would like that the percentage >> marker is center aligned on the bars, >> > > Perhaps the easiest solution is to use bar(...,align='c

[Matplotlib-users] Pareto diagram - align cumulative percentage marker in the middle of the bars

2009-08-25 Thread Werner F. Bruhin
off at the bottom when the frame is resized below a certain size.  How can I prevent this? Thanks for any tips on these problems. Werner -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial

Re: [Matplotlib-users] canvas.Refresh problem with 0.99 - solved

2009-08-23 Thread Werner F. Bruhin
Werner F. Bruhin wrote: > I previously used version '0.90.1' and could do something along these lines. > > figure.add_axes > ... etc > canvas.Refresh() > > User makes a new selection and in the code I do: > > figure.clear() > figure.add_axes > ... etc &g

[Matplotlib-users] canvas.Refresh problem with 0.99

2009-08-23 Thread Werner F. Bruhin
(e.g. figure.title) - which again are shown if I resize. Appreciate any hint on how to solve this. Werner -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report

Re: [Matplotlib-users] Percentage in pie in e.g. white instead of black

2009-08-22 Thread Werner F. Bruhin
Werner F. Bruhin wrote: > I would like to have the percentage values shown in white instead of in > black within a pie chart. > The following code is doing what I want, but it does not feel right. myPie = axes.pie(values, labels=labels, autopct=u'%1.0f%%', s

[Matplotlib-users] Percentage in pie in e.g. white instead of black

2009-08-21 Thread Werner F. Bruhin
gh the text.Text instances and figure out which ones are a percentage and then color them - but I guess that would be one way of doing it but it looks a bit odd to me. Thanks for any tips Werner -- Let Crystal Reports handl

Re: [Matplotlib-users] xticklabels possition on a bar chart

2009-08-19 Thread Werner F. Bruhin
thing like below will work (0.4 from 0.8/2 where > 0.8 is the default width of the bar). > > axes.set_xticks([x+0.4 for x in indx]) > That does the trick. Thanks. Although I wonder why "align='center'" does not work for me. Will review

Re: [Matplotlib-users] xticklabels possition on a bar chart

2009-08-19 Thread Werner F. Bruhin
Eric, Eric Firing wrote: > Werner F. Bruhin wrote: >> Werner F. Bruhin wrote: >> ... >>> Ideally I would like to have these labels printed at an angle. >> Put my glasses on and found the rotation property in the >> documentation, only issue left is centerin

Re: [Matplotlib-users] xticklabels possition on a bar chart

2009-08-18 Thread Werner F. Bruhin
Werner F. Bruhin wrote: ... > Ideally I would like to have these labels printed at an angle. Put my glasses on and found the rotation property in the documentation, only issue left is centering the labels below the bars. Wer

[Matplotlib-users] xticklabels possition on a bar chart

2009-08-18 Thread Werner F. Bruhin
(labels) I can not find how to provide the lables to the "bar" call or how else to make sure that "Rot" is centered under the first bar, "Weiß" under the second bar and so on. Ideally I would like to have these labels printed at an angle. Appreciate any hints Wer

Re: [Matplotlib-users] wx and matplotlib

2009-08-17 Thread Werner F. Bruhin
Hi Chris, Christopher Barker wrote: > Werner F. Bruhin wrote: > >> I am trying to put together a wxPython frame using py.aui to show >> multiple matplotlib.figures/canvas. >> > > I'd recommend you take a look at wxMPL -- it's a nice way to embe

[Matplotlib-users] wx and matplotlib

2009-08-16 Thread Werner F. Bruhin
estate is too small then there should be scrollbars per figure/canvas. Hopefully some samples code (in the example files which existed in 0.90.x) can put me in the right direction, otherwise I will try to put together a stand alone sample (without access to my database) to show my problem. Werner

[Matplotlib-users] examples for 0.99

2009-08-16 Thread Werner F. Bruhin
I am just starting to test 0.99 (having remained on 0.90.1 for some time now). I can't find the examples - can anyone point out were they are. Used the following to install: matplotlib-0.99.0.win32-py2.5-setup.exe W

Re: [Matplotlib-users] MatPlotLib + Py2exe, backend problems ...

2008-02-20 Thread Werner F. Bruhin
at that directory by default but if I don't > set this, it can't find the data files. > > In any event, it works now - after bumping head for 2 > weeks! > Hope the wall wasn't to hard, I always try this or the wxPython list after a day or two ;-) . See you Werner

Re: [Matplotlib-users] [wxPython-users] Re: MatPlotLib + Py2exe, backend problems ...

2008-02-20 Thread Werner F. Bruhin
is why you can only use this distribution > with specific versions of python, wx etc. > I am under the impression that as of mpl 0.9x there is NO specific version dependency for wxPython. I believe there was some optimization code which forced a dependency on wxPython 2.6 Unicode for

Re: [Matplotlib-users] [wxPython-users] Re: MatPlotLib + Py2exe, backend problems ...

2008-02-20 Thread Werner F. Bruhin
: numpy # numpy, Numeric or numarray > > I think this is your problem, I have: backend : WXAgg numerix : numpy # numpy, Numeric or numarray Hope this gets it cleared. Werner - This SF.net emai

Re: [Matplotlib-users] MatPlotLib + Py2exe, backend problems ...

2008-02-20 Thread Werner F. Bruhin
c file is defining TKAgg as the default backend, so change it to the following: backend : WXAgg numerix : numpy # numpy, Numeric or numarray Werner - This SF.net email is sponsored by: Microsoft Defy all chal

Re: [Matplotlib-users] py2exe problem

2007-11-27 Thread Werner F. Bruhin
t;embedding_in_wx.py" matplotlib example which has a "hack" to deal with this. I haven't found a better way to deal with this new folder structure, but for me this works. Werner Jeff # arguments for the setup() call app = dict( script = "App.py", oth

Re: [Matplotlib-users] py2exe with pylab

2007-09-20 Thread Werner F. Bruhin
losest to what you want to do? If you let me know I try to create/adapt the setup.py for it. Werner - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/

Re: [Matplotlib-users] py2exe with pylab

2007-09-18 Thread Werner F. Bruhin
Oops, forgot to copy the list. Hi Emmanuel, Emmanuel wrote: Hi, I got the setup.py given by Werner in an old thread (message from april 4th 2007). I putted code thereafter. This is probably out of date for 0.90. I attach the one I updated at some point, also I am not sure that how I deal

Re: [Matplotlib-users] wx apps and matplotlib plots, are they friends?

2007-06-22 Thread Werner F. Bruhin
this a wx.Frame which shows the matplotlib plots? Do have a smallish sample which shows the problem? ... > > The other vitals are: OS: WinXP, Python 2.5, matplotlib 0.90.1, > wxPython 2.8.0.1, ipython 0.8.2 > I have just about the

Re: [Matplotlib-users] py2exe + matplotlib == frustration

2007-06-16 Thread Werner F. Bruhin
("lib\\matplotlibdata\\fonts\\afm", matplotlib_font_afm), ("lib\\matplotlibdata\\fonts\\pdfcorefonts", matplotlib_font_pdfcorefonts), ("lib\\matplotlibdata\\fonts\\ttf", matplotlib_font_ttf), ("lib\\matplotlibdata\\ima

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-14 Thread Werner F. Bruhin
John, John Hunter wrote: > On 6/14/07, Werner F. Bruhin <[EMAIL PROTECTED]> wrote: > >> >>> I am getting this: >> >>> Could not match Bitstream Vera Serif, New Century Schoolbook, >> Century >> >>> Schoolbook L, Utopia, ITC Bookman,

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-14 Thread Werner F. Bruhin
Hi John, Werner F. Bruhin wrote: > John, > > John Hunter wrote: >> On 6/4/07, Werner F. Bruhin <[EMAIL PROTECTED]> wrote: >>> John Hunter wrote: >>> > matplotlib 0.90.1 is out and available for download from the >>> sourceforge site. >&

Re: [Matplotlib-users] Redundant error message when using wxAgg with wxPython 2.8

2007-06-08 Thread Werner F. Bruhin
dll was not > found. Reinstalling the application may fix this problem." > > After clicking OK, everything works fine. > > > Here is a bugfix: > If you use the new matplotlib 0.90.1 version then this has gone away. Werner

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-08 Thread Werner F. Bruhin
Hi Andrew, Andrew Straw wrote: ... Dear Werner, I am reluctant to eliminate the sub-folder structure because I think it would add the possibility of unnecessary bugs to just the py2exe built version. Would it be possible for you to re-factor this to include the directory layout? When you

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-07 Thread Werner F. Bruhin
Hi Andrew, Werner F. Bruhin wrote: > Hi Andrew, > > Andrew Straw wrote: > >> Dear Werner, >> >> This seems to be an unintended side-effect of reorganizing the mpl >> data file location that I did prior to this release. (I.e. it's not >> your co

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-05 Thread Werner F. Bruhin
Hi Andrew, Andrew Straw wrote: > Dear Werner, > > This seems to be an unintended side-effect of reorganizing the mpl > data file location that I did prior to this release. (I.e. it's not > your code that broke, I think it's mpl.) Unfortunately, since I didn't >

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-05 Thread Werner F. Bruhin
Werner F. Bruhin wrote: > John Hunter wrote: > >> matplotlib 0.90.1 is out and available for download from the sourceforge >> site. >> >> > When trying to package my application with py2exe I get the following error: > > Traceback (most recent ca

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-05 Thread Werner F. Bruhin
mpdir, mpfiles = matplotlib.get_py2exe_datafiles() File "C:\Python25\Lib\site-packages\matplotlib\__init__.py", line 369, in get_py2exe_datafiles mplfiles.remove(os.sep.join([get_data_path(), 'Matplotlib.nib'])) ValueError: l

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-05 Thread Werner F. Bruhin
John, John Hunter wrote: On 6/4/07, Werner F. Bruhin <[EMAIL PROTECTED]> wrote: John Hunter wrote: > matplotlib 0.90.1 is out and available for download from the sourceforge site. > Just installed it. Works very nicely with the exception of some font issue. I am getting thi

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-05 Thread Werner F. Bruhin
John, John Hunter wrote: On 6/4/07, Werner F. Bruhin <[EMAIL PROTECTED]> wrote: John Hunter wrote: > matplotlib 0.90.1 is out and available for download from the sourceforge site. > Just installed it. Works very nicely with the exception of some font issue. I am getting thi

Re: [Matplotlib-users] ANN: matplotlib-0.90.1

2007-06-04 Thread Werner F. Bruhin
far as I can see. What do I need to do to get read of this? I don't just want to change the verbose option. Any hints very appreciated. Werner P.S. John, sorry for the first mail sent to you instead of the list. > The 0.90 release is the last release in which we will continue to

[Matplotlib-users] matplotlib-0.90.1 no longer builds _wxagg.so

2007-06-03 Thread Werner Hoch
on x86_64. Regards Werner - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.ne

Re: [Matplotlib-users] matplotlib and py2exe

2007-05-28 Thread Werner F. Bruhin
pyd Hope this helps Werner #!/usr/bin/env python """ An example of how to use wx or wxagg in an application with a custom toolbar """ from matplotlib.numerix import arange, sin, pi import matplotlib # uncomment the following to use wx rathe

Re: [Matplotlib-users] DLL not found when importing pylab on Windows

2007-05-10 Thread Werner F. Bruhin
Paul, Paul Ray wrote: > > On May 10, 2007, at 11:05 AM, Werner F. Bruhin wrote: > >> Should you have a small matplotlib script which shows the problem >> I'll give it a try on my setup (XP or Vista with Python 2.5 and numpy. > > No need for a script. "

Re: [Matplotlib-users] DLL not found when importing pylab on Windows

2007-05-10 Thread Werner F. Bruhin
Hi Paul, Paul Ray wrote: > > On May 10, 2007, at 10:34 AM, Werner F. Bruhin wrote: > >> What backend are you using? >> >> If you use wxPython then as of 0.87.? something you need to either >> use wxPython 2.6 Unicode or rename the following file: > >

Re: [Matplotlib-users] DLL not found when importing pylab on Windows

2007-05-10 Thread Werner F. Bruhin
ends\_wxagg.pyd to matplot\backends\_wxagg DO NOT USE.pyd (or something similar). The 0.87 version was compiled against wxPython 2.6 to take accelarate some functions, by renaming the above file you basically deactive this accelaration code. I believe the next version of matplotlib will

Re: [Matplotlib-users] FigureCanvasWx setting font properties

2007-05-03 Thread Werner F. Bruhin
ize. I just recently discovered this for a Vista legend problem I had (they were to big). from matplotlib.font_manager import FontProperties self.figure.legend((statsLinesP + statsLinesC), (statsTextsP + statsTextsC), loc=self.legendPos, prop=FontPro

Re: [Matplotlib-users] Yet another matplotlib py2exe problem

2007-04-12 Thread Werner F. Bruhin
7;: {'packages': ['matplotlib.numerix','pytz'], > 'dll_excludes': ['tcl84.dll', 'tk84.dll', > 'wxmsw26uh_vc.dll'], > 'excl

Re: [Matplotlib-users] matplotlib and py2exe

2007-04-09 Thread Werner F. Bruhin
hon4dll) >] > You are also using an 'egg'. I seem to recall that py2exe does not yet really support that, but you might want to check on the py2exe list (e.g. on the gmane mirror of it at http://dir.gmane.org/gmane.comp.python.py2exe Werner -

Re: [Matplotlib-users] .notdef

2007-04-07 Thread Werner F. Bruhin
Johann, Jouni K. Seppänen wrote: > "Werner F. Bruhin" <[EMAIL PROTECTED]> writes: > > >>>> Actually, I have other problems : I cannot save in many formats. The >>>> bmp is deemed usueless by gimp, >>>> >>> I didn&#

Re: [Matplotlib-users] matplotlib and py2exe

2007-04-05 Thread Werner F. Bruhin
s are commented out. Can you try the setup.py I sent yesterday with which I included simple_plot.py, which is a script using pylab as you do in your trial.py. Werner - Take Surveys. Earn Cash. Influence the Future of IT Joi

Re: [Matplotlib-users] matplotlib and py2exe

2007-04-04 Thread Werner F. Bruhin
file simple_plot.py. Werner # -*- coding: iso-8859-1 -*-# from distutils.core import setup import os from os.path import join import shutil import glob import py2exe from py2exe.build_exe import py2exe import sys import matplotlib mpdir, mpfiles = matplotlib.get_py2exe_datafiles() # cleanup dist

Re: [Matplotlib-users] matplotlib and py2exe

2007-04-04 Thread Werner F. Bruhin
Hi Giorgio, Giorgio Luciano wrote: > Hello Werner, > and thank for the reply I've tried to recompile everything. The file > you sent in the mailing list give me the problem of wxmsw26uh_vc.dll > (and also dll missing while compiling) For the wxmsw26uh_vc.dll you need to rename

Re: [Matplotlib-users] matplotlib and py2exe

2007-04-04 Thread Werner F. Bruhin
ng rename, before you py2exe the app. matplotlib/backends/_wxagg.pyd to matplotlib/backends/_wxagg not used.pyd Werner - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'

Re: [Matplotlib-users] matplotlib and py2exe

2007-04-03 Thread Werner F. Bruhin
Hi Giorgio, Giorgio Luciano wrote: > Hello Werner, > here is the file I try to compile. > It gave an error of missing DLL when i try to launch :( > no Idea why, since with you example everything works > (I'm using maplotlib 0.87.7) I assume the DLL not found is "wxm

Re: [Matplotlib-users] matplotlib and py2exe

2007-04-02 Thread Werner F. Bruhin
le? Did you try to compile the sample I enclosed the other day? Did that work? If not what error are you getting. Are you using numpy or ? Provide a small sample (with no dependencies if possible) which does not work for you with the corresponding

Re: [Matplotlib-users] matplotlib and py2exe

2007-04-01 Thread Werner F. Bruhin
#" matplotlib.numerix", > You need to activate/un-comment the matplotlib.numerix line. Also note that if you only include UTC and you use the timezone stuff in matplot then a user NOT using UTC, i.e. another timezone will have a problem, it is therefore better to just i

Re: [Matplotlib-users] matplotlib and py2exe

2007-03-31 Thread Werner F. Bruhin
/_wxagg.pyd to matplotlib/backends/_wxagg not used.pyd Hope this helps Werner # -*- coding: iso-8859-1 -*-# from distutils.core import setup import os from os.path import join import shutil import glob import py2exe from py2exe.build_exe import py2exe import sys import matplotlib mpdir, mpfiles

Re: [Matplotlib-users] cumulative distribution function

2007-03-20 Thread Werner Hoch
way to do this nicely with matplotlib, right? Try this one: x = sin(arange(0,100,0.1)) ## your function ## plot the sorted value of your function against ## a linear vektor from 0 to 1 with the same length plot(sort(x), arange(l

Re: [Matplotlib-users] what version of wxpython to use???

2007-02-22 Thread Werner F. Bruhin
't there some conflicts between IDLE and wxPython? Werner - 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 & b

  1   2   >