SourceForge logo
SourceForge logo
Menu

matplotlib-users — Discussion related to using matplotlib

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
(3)
Jun
Jul
Aug
(12)
Sep
(12)
Oct
(56)
Nov
(65)
Dec
(37)
2004 Jan
(59)
Feb
(78)
Mar
(153)
Apr
(205)
May
(184)
Jun
(123)
Jul
(171)
Aug
(156)
Sep
(190)
Oct
(120)
Nov
(154)
Dec
(223)
2005 Jan
(184)
Feb
(267)
Mar
(214)
Apr
(286)
May
(320)
Jun
(299)
Jul
(348)
Aug
(283)
Sep
(355)
Oct
(293)
Nov
(232)
Dec
(203)
2006 Jan
(352)
Feb
(358)
Mar
(403)
Apr
(313)
May
(165)
Jun
(281)
Jul
(316)
Aug
(228)
Sep
(279)
Oct
(243)
Nov
(315)
Dec
(345)
2007 Jan
(260)
Feb
(323)
Mar
(340)
Apr
(319)
May
(290)
Jun
(296)
Jul
(221)
Aug
(292)
Sep
(242)
Oct
(248)
Nov
(242)
Dec
(332)
2008 Jan
(312)
Feb
(359)
Mar
(454)
Apr
(287)
May
(340)
Jun
(450)
Jul
(403)
Aug
(324)
Sep
(349)
Oct
(385)
Nov
(363)
Dec
(437)
2009 Jan
(500)
Feb
(301)
Mar
(409)
Apr
(486)
May
(545)
Jun
(391)
Jul
(518)
Aug
(497)
Sep
(492)
Oct
(429)
Nov
(357)
Dec
(310)
2010 Jan
(371)
Feb
(657)
Mar
(519)
Apr
(432)
May
(312)
Jun
(416)
Jul
(477)
Aug
(386)
Sep
(419)
Oct
(435)
Nov
(320)
Dec
(202)
2011 Jan
(321)
Feb
(413)
Mar
(299)
Apr
(215)
May
(284)
Jun
(203)
Jul
(207)
Aug
(314)
Sep
(321)
Oct
(259)
Nov
(347)
Dec
(209)
2012 Jan
(322)
Feb
(414)
Mar
(377)
Apr
(179)
May
(173)
Jun
(234)
Jul
(295)
Aug
(239)
Sep
(276)
Oct
(355)
Nov
(144)
Dec
(108)
2013 Jan
(170)
Feb
(89)
Mar
(204)
Apr
(133)
May
(142)
Jun
(89)
Jul
(160)
Aug
(180)
Sep
(69)
Oct
(136)
Nov
(83)
Dec
(32)
2014 Jan
(71)
Feb
(90)
Mar
(161)
Apr
(117)
May
(78)
Jun
(94)
Jul
(60)
Aug
(83)
Sep
(102)
Oct
(132)
Nov
(154)
Dec
(96)
2015 Jan
(45)
Feb
(138)
Mar
(176)
Apr
(132)
May
(119)
Jun
(124)
Jul
(77)
Aug
(31)
Sep
(34)
Oct
(22)
Nov
(23)
Dec
(9)
2016 Jan
(26)
Feb
(17)
Mar
(10)
Apr
(8)
May
(4)
Jun
(8)
Jul
(6)
Aug
(5)
Sep
(9)
Oct
(4)
Nov
Dec
2017 Jan
(5)
Feb
(7)
Mar
(1)
Apr
(5)
May
Jun
(3)
Jul
(6)
Aug
(1)
Sep
Oct
(2)
Nov
(1)
Dec
2018 Jan
Feb
Mar
Apr
(1)
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2020 Jan
Feb
Mar
Apr
May
(1)
Jun
Jul
Aug
Sep
Oct
Nov
Dec
2025 Jan
(1)
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
S M T W T F S
1
(2)
2
(8)
3
(8)
4
(3)
5
(15)
6
(11)
7
(4)
8
9
(3)
10
(21)
11
(5)
12
(7)
13
(10)
14
(12)
15
(3)
16
(4)
17
(16)
18
(20)
19
(11)
20
(9)
21
(1)
22
23
(15)
24
(11)
25
(1)
26
(9)
27
(5)
28
29
(1)
30
31
(6)




Showing 4 results of 4

From: Michael D. <md...@st...> - 2007年07月16日 13:53:36
John Travers wrote:
> On 16/07/07, Michael Droettboom <md...@st...> wrote:
>> I wonder if these troubles are related to my recent changes to subset
>> the fonts. Could you try setting the rc variable ps.fonttype to 42, and
>> let me know if that works?
>
> It is something to do with fonts, if I remove the line:
>
> rc('font',**{'family':'sans-serif','sans-serif':['DejaVu 
> Sans'],'size':12})
>
> the problem goes away. I'll try and construct a minimal script if you
> want, but I guess the above is where the problem lies. Is this line
> wrong in some way?
That line is not wrong. It turns out that the DejaVu fonts (unlike any 
of the fonts I had tested with) have newline characters in the Copyright 
string. This was messing up the comments in the PostScript file.
Thanks for helping to find this bug! It should be fixed in 3538.
Cheers,
Mike
From: Darren D. <dd...@co...> - 2007年07月16日 11:57:13
On Monday 16 July 2007 7:27:46 am John Travers wrote:
> Hi all,
>
> I recently updated my subversion of matplotlib after a few months. Now
> scripts that used to work fine are giving the following error (when
> using ps backend xpdf):
[...]
> My system has otherwise not changed. I am on ubuntu fiesty, python
> 2.5.1, gcc 4.1.2, numpy 1.0.4.dev3883, ESP Ghostscript 815.04.
One thing: the traceback is unfortunately not very helpful, but I did notice 
this line:
> xpdf_distill(tmpfile, ext=='.eps', ptype=papertype, bbox=bbox)
That should read ext='eps', not ==. Any idea how the extra = got there?
If that is not the problem, please attach as simple a script as possible that 
reproduces the problem, along with any changes you have made to your rc 
settings. I use the xpdf distiller all the time and havent had any problems, 
although I cant build mpl this morning so I don't know when I will be able to 
test the most recent svn changes.
Darren
From: John T. <jt...@gm...> - 2007年07月16日 11:27:47
Hi all,
I recently updated my subversion of matplotlib after a few months. Now
scripts that used to work fine are giving the following error (when
using ps backend xpdf):
--------------------
ESP Ghostscript 815.04: Unrecoverable error, exit code 1
Traceback (most recent call last):
 File "MF_disp_visible.py", line 22, in <module>
 legendpos=legendpos)
 File "/home/john/thesis/figures/pytools/plots.py", line 171, in plot_oney
 fig.savefig(filename+'_raw.eps')
 File "/usr/lib/python2.5/site-packages/matplotlib-0.90.1_r3536-py2.5-linux-i686.egg/matplotlib/figure.py",
line 769, in savefig
 self.canvas.print_figure(*args, **kwargs)
 File "/usr/lib/python2.5/site-packages/matplotlib-0.90.1_r3536-py2.5-linux-i686.egg/matplotlib/backends/backend_ps.py",
line 1063, in print_figure
 xpdf_distill(tmpfile, ext=='.eps', ptype=papertype, bbox=bbox)
 File "/usr/lib/python2.5/site-packages/matplotlib-0.90.1_r3536-py2.5-linux-i686.egg/matplotlib/backends/backend_ps.py",
line 1329, in xpdf_distill
 image.\n\Here is the report generated by ghostscript:\n\n' + fh.read())
RuntimeError: ps2pdf was not able to process your image.
\Here is the report generated by ghostscript:
ERROR: /undefined in Copyright
Operand stack:
Execution stack:
 %interp_exit .runexec2 --nostringval-- --nostringval--
--nostringval-- 2 %stopped_push --nostringval--
--nostringval-- --nostringval-- false 1 %stopped_push 1 3
 %oparray_pop 1 3 %oparray_pop --nostringval-- 1 3
%oparray_pop 1 3 %oparray_pop .runexec2 --nostringval--
--nostringval-- --nostringval-- 2 %stopped_push
--nostringval--
Dictionary stack:
 --dict:1126/1686(ro)(G)-- --dict:0/20(G)-- --dict:107/200(L)--
 --dict:6/7(L)--
Current allocation mode is local
Last OS error: 2
Current file position is 703
-------------------
And this error if not using xpdf:
-------------------
"gs" -dNOPAUSE -dBATCH -sDEVICE=bbox -c "<</PageSize [9400 9400]
/PageOffset [3000 3000]>> setpagedevice" -f "/tmp/gsview6Ye4fd"
ESP Ghostscript 815.04 (2007年03月14日)
Copyright (C) 2004 artofcode LLC, Benicia, CA. All rights reserved.
This software comes with NO WARRANTY: see the file PUBLIC for details.
ERROR: /undefined in Copyright
Operand stack:
Execution stack:
 %interp_exit .runexec2 --nostringval-- --nostringval--
--nostringval-- 2 %stopped_push --nostringval--
--nostringval-- --nostringval-- false 1 %stopped_push 1 3
 %oparray_pop 1 3 %oparray_pop 1 3 %oparray_pop 1 3
%oparray_pop .runexec2 --nostringval-- --nostringval--
--nostringval-- 2 %stopped_push --nostringval--
Dictionary stack:
 --dict:1122/1686(ro)(G)-- --dict:0/20(G)-- --dict:105/200(L)--
 --dict:6/7(L)--
Current allocation mode is local
Last OS error: 2
Current file position is 750
Ghostscript failed to obtain bounding box
*** glibc detected *** epstool: double free or corruption (!prev):
0x08091158 ***
======= Backtrace: =========
/lib/tls/i686/cmov/libc.so.6[0xb7e767cd]
/lib/tls/i686/cmov/libc.so.6(cfree+0x90)[0xb7e79e30]
/lib/tls/i686/cmov/libc.so.6(fclose+0x134)[0xb7e65844]
epstool[0x8049e8a]
epstool[0x804ca64]
epstool[0x8050a20]
/lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xdc)[0xb7e24ebc]
epstool[0x8048dd1]
======= Memory map: ========
08048000-0807f000 r-xp 00000000 08:07 593687 /usr/bin/epstool
0807f000-08080000 rw-p 00036000 08:07 593687 /usr/bin/epstool
08080000-080b1000 rw-p 08080000 00:00 0 [heap]
b7c00000-b7c21000 rw-p b7c00000 00:00 0
b7c21000-b7d00000 ---p b7c21000 00:00 0
b7e0e000-b7e0f000 rw-p b7e0e000 00:00 0
b7e0f000-b7f4a000 r-xp 00000000 08:07 82596 /lib/tls/i686/cmov/libc-2.5.so
b7f4a000-b7f4b000 r--p 0013b000 08:07 82596 /lib/tls/i686/cmov/libc-2.5.so
b7f4b000-b7f4d000 rw-p 0013c000 08:07 82596 /lib/tls/i686/cmov/libc-2.5.so
b7f4d000-b7f50000 rw-p b7f4d000 00:00 0
b7f5e000-b7f69000 r-xp 00000000 08:07 48929 /lib/libgcc_s.so.1
b7f69000-b7f6a000 rw-p 0000a000 08:07 48929 /lib/libgcc_s.so.1
b7f6a000-b7f6d000 rw-p b7f6a000 00:00 0
b7f6d000-b7f86000 r-xp 00000000 08:07 48888 /lib/ld-2.5.so
b7f86000-b7f88000 rw-p 00019000 08:07 48888 /lib/ld-2.5.so
bf8b5000-bf8ca000 rw-p bf8b5000 00:00 0 [stack]
ffffe000-fffff000 r-xp 00000000 00:00 0 [vdso]
Aborted (core dumped)
----------------
My system has otherwise not changed. I am on ubuntu fiesty, python
2.5.1, gcc 4.1.2, numpy 1.0.4.dev3883, ESP Ghostscript 815.04.
Any help would be much appreciated.
Thanks,
John Travers
From: Eric F. <ef...@ha...> - 2007年07月16日 00:56:45
Mark Bakker wrote:
> Hello, I never noticed the 'annotate' option in pylab.
> I have been trying unsuccesfully to get it to work.
I have fixed the problem of inconsistent and incorrect docstrings in 
annotate, so it should be easier for the next person who stumbles over 
it to make it work.
Eric

Showing 4 results of 4

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /