Re: [matplotlib-devel] IMPORTANT: Mailing lists are moving

2015-07-31 Thread Neal Becker
I read via gmane: I guess this will need to be updated? -- ___ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/

[matplotlib-devel] bad zooming performance on large dataset

2015-02-17 Thread Neal Becker
I plotted a large number of bars on a bargraph. I am not surprised memory usage and time to draw are bad on the initial view. But I'd expect as I zoom in more and more, the time to draw should improve - there's less to draw. This does not appear to be the case. -- -- Those who don't underst

[matplotlib-devel] stix fonts not found fedora 20

2013-12-31 Thread Neal Becker
If I rely on the system version of matplotlib python-matplotlib-1.3.0-1.fc20.x86_64 stix fonts are not found /usr/lib64/python2.7/site-packages/matplotlib/font_manager.py:1236: UserWarning: findfont: Font family ['STIXGeneral'] not found. Falling back to Bitstream Vera Sans (prop.get_family

Re: [matplotlib-devel] assertion error with xkcd

2013-10-23 Thread Neal Becker
Benjamin Root wrote: > Can you provide a code example to reproduce this. I suspect that recent > work on path effects might be to blame here. Also, exactly which version of > matplotlib and numpy were you using? The assert was placed there about a > year ago IIRC to deal with a short-lived numpy b

Re: [matplotlib-devel] Weird issue with mpl-1.3.1 install

2013-10-23 Thread Neal Becker
OK, this seems to be a pip caching bug. After rm -rf /tmp/pip*, it installed correctly Neal Becker wrote: > This is really strange. It d/l 1.3.1, but then builds installs 1.3.0??? > > python3-pip install --user --up --no-deps matplotlib > Downloading/unpacking matplotlib f

[matplotlib-devel] Weird issue with mpl-1.3.1 install

2013-10-23 Thread Neal Becker
This is really strange. It d/l 1.3.1, but then builds installs 1.3.0??? python3-pip install --user --up --no-deps matplotlib Downloading/unpacking matplotlib from https://downloads.sourceforge.net/project/matplotlib/matplotlib/matplotlib-1.3.1/matplotlib-1.3.1.tar.gz Running setup.py egg_info

[matplotlib-devel] assertion error with xkcd

2013-10-23 Thread Neal Becker
This was using pdfpages (if that matters) Traceback (most recent call last): File "./plot_stuff2.py", line 326, in the_plot.finish (args, opt, time, res) File "./plot_stuff2.py", line 145, in finish self.pdf.savefig (self.fig) File "/home/nbecker/.local/lib/python2.7/site- packages/

[matplotlib-devel] mpl 1.3.1 install issues with py3.3

2013-10-23 Thread Neal Becker
pip install of mpl 1.3.1 has issues. It wants to install nose, but seems to be incompatible with py3.3: Running setup.py install for nose File "/home/nbecker/.local/lib/python3.3/site- packages/nose/plugins/base.py", line 70 except OptionConflictError, e:

[matplotlib-devel] python2 vs. python3 matplotlib different results

2013-08-28 Thread Neal Becker
Autoscaling is producing a different result on p2 vs p3. Maybe a missed N/M -> N//M ?? [nbecker@nbecker7 dvbs2x_iter]$ rpm -q python-matplotlib python-matplotlib-1.2.0-14.fc19.x86_64 [nbecker@nbecker7 dvbs2x_iter]$ rpm -q python3-matplotlib python3-matplotlib-1.2.0-14.fc19.x86_64 --

Re: [matplotlib-devel] MEP14: Improve text handling

2013-05-31 Thread Neal Becker
Paul Hobson wrote: > On Thu, May 30, 2013 at 5:03 PM, Michael Droettboom > wrote: > >> On 05/30/2013 02:27 PM, Chris Barker - NOAA Federal wrote: >> > >> > With a fully-function mathtex, it could be the default (only?) text >> > layout system for MPL, simplifying things quite a bit. >> >> I'm no

Re: [matplotlib-devel] errorbar - end bars not visible

2013-01-27 Thread Neal Becker
Damon McDougall wrote: > On Sun, Jan 27, 2013 at 11:51 AM, Neal Becker > wrote: >> Damon McDougall wrote: >> >>> On Sun, Jan 27, 2013 at 8:56 AM, Neal Becker >>> wrote: >>>> Simple example: the bars on the two x axis ends are not visible. >>

Re: [matplotlib-devel] errorbar - end bars not visible

2013-01-27 Thread Neal Becker
Damon McDougall wrote: > On Sun, Jan 27, 2013 at 8:56 AM, Neal Becker > wrote: >> Simple example: the bars on the two x axis ends are not visible. >> >> x = [3, 6, 10] >> y = [1, 2, 3] >> import matplotlib.pyplot as plt >> >> plt.errorbar (x

[matplotlib-devel] errorbar - end bars not visible

2013-01-27 Thread Neal Becker
Simple example: the bars on the two x axis ends are not visible. x = [3, 6, 10] y = [1, 2, 3] import matplotlib.pyplot as plt plt.errorbar (x, y, 0.2) plt.show() -- Master Visual Studio, SharePoint, SQL, ASP.NET, C# 20

Re: [matplotlib-devel] Interrupt is fixed

2012-07-18 Thread Neal Becker
I'm afraid it's only an annoyance, and I doubt I'll be motivate to try to hunt that down. Benjamin Root wrote: > On Wed, Jul 18, 2012 at 1:40 PM, Neal Becker > wrote: > >> OK, my mistake. I'm using 1.1.1rc2. >> >> I was using a new installat

Re: [matplotlib-devel] Interrupt is fixed

2012-07-18 Thread Neal Becker
to nuke the non-controled versions by default). > > > UPDATE: I've just noticed that your traceback is showing your backend > as gtk, for which I cannot take any credit (nor do I know the change > which caused this improvement). > > > > On 18 July 2012 13:06, Neal Becker

[matplotlib-devel] Interrupt is fixed

2012-07-18 Thread Neal Becker
One annoyance with mpl in the past is that when running a script, SIGINT would not kill it (needed to use C-c C-\ instead). It seems this is now fixed: Interrupt now gives me: File "/home/nbecker/.local/lib/python2.7/site- packages/matplotlib/backends/backend_gtk.py", line 77, in mainloop

Re: [matplotlib-devel] v1.1.1rc2 tarballs are up

2012-06-13 Thread Neal Becker
Since installing this on fedora f17 x86_64, I see this warning: ipython -pylab ... ** (process:26729): WARNING **: Trying to register gtype 'GMountMountFlags' as enum when in fact it is of type 'GFlags' ** (process:26729): WARNING **: Trying to register gtype 'GDriveStartFlags' as enum when in

Re: [matplotlib-devel] 1.1.1rc RuntimeError: underlying C/C++ object has been deleted

2012-03-28 Thread Neal Becker
John Hunter wrote: > On Wed, Mar 28, 2012 at 8:57 AM, Neal Becker > wrote: > >> qt-x11-4.8.0-7.fc16.x86_64 >> PyQt4-4.8.6-1.fc16.x86_64 >> >> But interestingly, I'm not actually using the display in this script. I'm >> using >> pd

Re: [matplotlib-devel] 1.1.1rc RuntimeError: underlying C/C++ object has been deleted

2012-03-28 Thread Neal Becker
ose() Then when all pages are done: self.pdf.close() It looks like I'm getting one of these error messages for each page. Michael Droettboom wrote: > Can you provide more detail about how to reproduce this? > > I can deduce you're using the Qt4Agg backend -- but

Re: [matplotlib-devel] 1.1.1rc does not fix tight_layout for figtext?

2012-03-28 Thread Neal Becker
lignment='left', > verticalalignment='bottom', size=5) > fig.text (0.5, 1, "01", horizontalalignment='left', > verticalalignment='top', size='x-small') > > gs1.tight_layout(fig, rect=[0, 0.03, 1, 0.97])

[matplotlib-devel] 1.1.1rc RuntimeError: underlying C/C++ object has been deleted

2012-03-28 Thread Neal Becker
I'm getting these messages, which did not occur with 1.1: Traceback (most recent call last): File "/home/nbecker/.local/lib/python2.7/site- packages/matplotlib/backends/backend_qt4.py", line 151, in lambda: self.close_event()) File "/home/nbecker/.local/lib/python2.7/site- packages/matplo

[matplotlib-devel] 1.1.1rc does not fix tight_layout for figtext?

2012-03-28 Thread Neal Becker
I just tried 1.1.1rc to see if it fixed the tight_layout for figtext. I have a semilogy plot, and add some lines of text on the bottom (and top): plt.figtext (0, 0, res['carriers'].values, horizontalalignment='left', verticalalignment='bottom', size=5) plt.figtext (0.5, 1, sel

Re: [matplotlib-devel] nasty import behavior

2010-07-08 Thread Neal Becker
Use case is I have a module that does digital design. If run as main, it has a little test that does a plot. The plot is supposed to use a gui and display. But if not run as main, there is no plot, and maybe no display. I had: if __name__ == "__main__": from matplotlib.pyplot import * bu

Re: [matplotlib-devel] nasty import behavior

2010-07-08 Thread Neal Becker
elpful: > > http://matplotlib.sourceforge.net/faq/howto_faq.html#matplotlib-in-a-web- application-server > > Mike > > On 07/08/2010 08:26 AM, Neal Becker wrote: >> A python module of mine could draw a plot, and so imports from >> matplotlib. Actually, plotting is part o

[matplotlib-devel] nasty import behavior

2010-07-08 Thread Neal Becker
A python module of mine could draw a plot, and so imports from matplotlib. Actually, plotting is part of the module test that is in if __name__==__main__ But this kills my job trying to run non-interactively. This is IMO rather nasty behavior. matplotlib should not try to open the display ju

Re: [matplotlib-devel] matplotlib broken on fedora 12

2010-04-25 Thread Neal Becker
Gökhan Sever wrote: > On Sun, Apr 25, 2010 at 1:37 PM, Neal Becker > wrote: > >> Qt4Agg is the one that I used first - the one that doesn't work. >> > > Pardon my wrong guess :) Sometimes this Linux world goes beyond/behind my > expectations... > Can yo

Re: [matplotlib-devel] matplotlib broken on fedora 12

2010-04-25 Thread Neal Becker
Gökhan Sever wrote: > On Sun, Apr 25, 2010 at 1:28 PM, Neal Becker > wrote: > >> savefig works fine. >> >> Using 'gtk' backend I can save, but seems to have other problems. >> >> Using recommended TkAgg I get error that >> ImportError: No m

Re: [matplotlib-devel] matplotlib broken on fedora 12

2010-04-25 Thread Neal Becker
Gökhan Sever wrote: > On Sun, Apr 25, 2010 at 1:02 PM, Neal Becker > wrote: > >> Yes, I get this: >> >> kfilemodule(29192)/kio (KDirModel) KDirModelPrivate::_k_slotDeleteItems: >> No node found for item that was just removed: >> KUrl("file:///

Re: [matplotlib-devel] matplotlib broken on fedora 12

2010-04-25 Thread Neal Becker
Gökhan Sever wrote: > On Sun, Apr 25, 2010 at 12:52 PM, Neal Becker > wrote: > >> Yes, I meant the 'save' button in the upper right. >> >> It used to work, but some update seems to have broken it. Strange, so >> far the only application that shows a

Re: [matplotlib-devel] matplotlib broken on fedora 12

2010-04-25 Thread Neal Becker
Gökhan Sever wrote: > On Sun, Apr 25, 2010 at 12:33 PM, Neal Becker > wrote: > >> python-matplotlib-0.99.1.2-1.fc12.x86_64 >> >> When I hit 'print' button, I get a partially painted dialog. Screenshot >> attached. This is repeatable on 2 different ma

Re: [matplotlib-devel] [SciPy-dev] Announcing toydist, improving distribution and packaging situation

2009-12-28 Thread Neal Becker
David Cournapeau wrote: > The idea would be that for a few major distributions at least, you > would have .rpm available on the repository. If you install from > sources, there would be a few mechanisms to avoid your exact issue > (like maybe defaulting to --user kind of installs). Of course, it c

Re: [matplotlib-devel] error installing matplotlib-0.98.5

2008-12-12 Thread Neal Becker
Charlie Moad wrote: > I'm not seeing this on OSX. Is anyone else experiencing this issue? > > - Charlie Please see http://permalink.gmane.org/gmane.comp.python.matplotlib.general/15425 -- SF.Net email is Sponsored by

[matplotlib-devel] error installing matplotlib-0.98.5

2008-12-12 Thread Neal Becker
sudo easy_install -U matplotlib Searching for matplotlib Reading http://pypi.python.org/simple/matplotlib/ Reading http://matplotlib.sourceforge.net Reading https://sourceforge.net/project/showfiles.php?group_id=80706&package_id=278194 Reading https://sourceforge.net/project/showfiles.php?group_i

[matplotlib-devel] matplotlib-0.98.4 easy_install error

2008-12-11 Thread Neal Becker
> sudo easy_install -U matplotlib Searching for matplotlib Reading http://pypi.python.org/simple/matplotlib/ Reading http://matplotlib.sourceforge.net Reading https://sourceforge.net/project/showfiles.php?group_id=80706&package_id=278194 Reading https://sourceforge.net/project/showfiles.php?group

Re: [matplotlib-devel] error saving to pdf (cannot take log of nonpositive value)

2008-10-27 Thread Neal Becker
Neal Becker wrote: > matplotlib-0.91 > > I got a nice semilog plot on the screen. Trying to save it to pdf fails, > saying 'cannot take log of nonpositive value'. > Ah, seems to be fixed in 0.98.3 (b

[matplotlib-devel] error saving to pdf (cannot take log of nonpositive value)

2008-10-27 Thread Neal Becker
matplotlib-0.91 I got a nice semilog plot on the screen. Trying to save it to pdf fails, saying 'cannot take log of nonpositive value'. - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build t

[matplotlib-devel] matplotlib-0.98 not easy_installable?

2008-06-12 Thread Neal Becker
matplotlib-0.98 is not available for easy_install it seems: sudo easy_install --dry-run matplotlib Searching for matplotlib Best match: matplotlib 0.91.2 Processing matplotlib-0.91.2-py2.5-linux-x86_64.egg matplotlib 0.91.2 is already the active version in easy-install.pth --

Re: [matplotlib-devel] A good, interactive plotting package

2008-02-10 Thread Neal Becker
John Hunter wrote: > On Feb 10, 2008 7:32 AM, Neal Becker > <[EMAIL PROTECTED]> wrote: >> The available plotting in pylab is good, but could be a lot better. I've >> used grace (xmgrace) for years and it's great. After bringing up the >> plot, I can inte

[matplotlib-devel] A good, interactive plotting package

2008-02-10 Thread Neal Becker
The available plotting in pylab is good, but could be a lot better. I've used grace (xmgrace) for years and it's great. After bringing up the plot, I can interactively modify it in all kinds of ways. Any thoughts on a good package to use with pylab? (I know I can easily enough get pylab to use