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/
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
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
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
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
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
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/
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:
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
--
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
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.
>>
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
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
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
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
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
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
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
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
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])
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
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
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
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
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
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
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
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:///
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
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
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
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
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
> 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
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-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-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
--
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
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
39 matches
Mail list logo