You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(33) |
Dec
(20) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(7) |
Feb
(44) |
Mar
(51) |
Apr
(43) |
May
(43) |
Jun
(36) |
Jul
(61) |
Aug
(44) |
Sep
(25) |
Oct
(82) |
Nov
(97) |
Dec
(47) |
| 2005 |
Jan
(77) |
Feb
(143) |
Mar
(42) |
Apr
(31) |
May
(93) |
Jun
(93) |
Jul
(35) |
Aug
(78) |
Sep
(56) |
Oct
(44) |
Nov
(72) |
Dec
(75) |
| 2006 |
Jan
(116) |
Feb
(99) |
Mar
(181) |
Apr
(171) |
May
(112) |
Jun
(86) |
Jul
(91) |
Aug
(111) |
Sep
(77) |
Oct
(72) |
Nov
(57) |
Dec
(51) |
| 2007 |
Jan
(64) |
Feb
(116) |
Mar
(70) |
Apr
(74) |
May
(53) |
Jun
(40) |
Jul
(519) |
Aug
(151) |
Sep
(132) |
Oct
(74) |
Nov
(282) |
Dec
(190) |
| 2008 |
Jan
(141) |
Feb
(67) |
Mar
(69) |
Apr
(96) |
May
(227) |
Jun
(404) |
Jul
(399) |
Aug
(96) |
Sep
(120) |
Oct
(205) |
Nov
(126) |
Dec
(261) |
| 2009 |
Jan
(136) |
Feb
(136) |
Mar
(119) |
Apr
(124) |
May
(155) |
Jun
(98) |
Jul
(136) |
Aug
(292) |
Sep
(174) |
Oct
(126) |
Nov
(126) |
Dec
(79) |
| 2010 |
Jan
(109) |
Feb
(83) |
Mar
(139) |
Apr
(91) |
May
(79) |
Jun
(164) |
Jul
(184) |
Aug
(146) |
Sep
(163) |
Oct
(128) |
Nov
(70) |
Dec
(73) |
| 2011 |
Jan
(235) |
Feb
(165) |
Mar
(147) |
Apr
(86) |
May
(74) |
Jun
(118) |
Jul
(65) |
Aug
(75) |
Sep
(162) |
Oct
(94) |
Nov
(48) |
Dec
(44) |
| 2012 |
Jan
(49) |
Feb
(40) |
Mar
(88) |
Apr
(35) |
May
(52) |
Jun
(69) |
Jul
(90) |
Aug
(123) |
Sep
(112) |
Oct
(120) |
Nov
(105) |
Dec
(116) |
| 2013 |
Jan
(76) |
Feb
(26) |
Mar
(78) |
Apr
(43) |
May
(61) |
Jun
(53) |
Jul
(147) |
Aug
(85) |
Sep
(83) |
Oct
(122) |
Nov
(18) |
Dec
(27) |
| 2014 |
Jan
(58) |
Feb
(25) |
Mar
(49) |
Apr
(17) |
May
(29) |
Jun
(39) |
Jul
(53) |
Aug
(52) |
Sep
(35) |
Oct
(47) |
Nov
(110) |
Dec
(27) |
| 2015 |
Jan
(50) |
Feb
(93) |
Mar
(96) |
Apr
(30) |
May
(55) |
Jun
(83) |
Jul
(44) |
Aug
(8) |
Sep
(5) |
Oct
|
Nov
(1) |
Dec
(1) |
| 2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(3) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
1
(1) |
2
(1) |
3
(3) |
4
(2) |
5
|
|
6
|
7
(8) |
8
|
9
|
10
(3) |
11
(2) |
12
(2) |
|
13
(2) |
14
(6) |
15
(1) |
16
|
17
|
18
(8) |
19
(1) |
|
20
(9) |
21
|
22
(6) |
23
(1) |
24
(13) |
25
(8) |
26
(5) |
|
27
(3) |
28
(7) |
29
(4) |
30
|
|
|
|
|
From: Eric F. <ef...@ha...> - 2008-04-26 23:41:35
|
John,
Thank you very much--that's a big help. Some time today or tomorrow I
will try to track down any remaining quiver problems. I suspect similar
dpi-related problems may lurk elsewhere as well.
Those lazy values worked pretty well!
One of the things that puzzles me is the following method of
FigureCanvasAgg in backend_agg:
def print_png(self, filename_or_obj, *args, **kwargs):
FigureCanvasAgg.draw(self)
renderer = self.get_renderer()
original_dpi = renderer.dpi
renderer.dpi = self.figure.dpi
if type(filename_or_obj) in (str, unicode):
filename_or_obj = open(filename_or_obj, 'w')
self.get_renderer()._renderer.write_png(filename_or_obj,
self.figure.dpi)
renderer.dpi = original_dpi
The FigureCanvasAgg.draw(self) command gets turned into
self.figure.draw(self.renderer), which is executed *before* the
renderer.dpi gets set to self.figure.dpi, so it seems like there is the
possibility of an inconsistency. I suspect there is no problem in
practice, but it is confusing.
Now that I look again, it looks like what is happening is that the
get_renderer call in FigureCanvasAgg.draw is setting the renderer dpi to
the figure dpi, as well as setting self.renderer, in which case most of
the code in print_png seems to be superfluous.
Mostly unrelated question: is there any point in keeping
backend_agg2.py, or at least keeping it in the backends directory?
Maybe it is time to move that and backend_emf.py (and maybe others) to
some sort of cold storage, in case someone is inspired later to
resurrect them.
Eric
John Hunter wrote:
> On Sat, Apr 26, 2008 at 2:04 PM, Eric Firing <ef...@ha...> wrote:
>
>> The attached script, run on svn mpl, illustrates a positioning problem: note
>> that the subplot titles are badly positioned in the 50 dpi version. I
>> believe that changing from 150 to 50 dpi should yield a perfect scaling of
>> everything in the plot, but it doesn't. There is a similar problem with a
>> quiver key positioned outside the axes frame, but I don't have a trivial
>> example yet; I am hoping that whatever solves the title positioning problem
>> will take care of that also. If not, I will make a simple example and we
>> can attack it separately.
>
> There were two problems with title positioning. The first was that
> the title offset transformation was hardcoded in pixels and not dpi,
> and the second was that is was not getting notifed when the figure dpi
> was changed. I changed the offset to read:
>
> self.titleOffsetTrans = mtransforms.Affine2D().translate(
> 0.0, 5.0*self.figure.dpi/72.)
>
> and added a callbacks registry to the figure instance so that
> observers could be notified when dpi was changed (dpi used to be a
> lazy value on the maintenance branch but is a plain-ol-value on the
> trunk).
>
> def on_dpi_change(fig):
> self.titleOffsetTrans.clear().translate(
> 0.0, 5.0*fig.dpi/72.)
>
> self.figure.callbacks.connect('dpi_changed', on_dpi_change)
>
> It looks like the problem in the quiver code is that the "labelsep"
> property reads the dpi when the QuiverKey is intiitalized but does not
> get notified on dpi change. I added a callback there too so you
> should test to see if this helps. The dpi setting is also referenced
> in the _set_transform method. Since you are more familiar with the
> quiver code that I am, and this hint may point you in the right
> direction, I'll let you take a look at that and see if a callback is
> needed.
>
> On a related note, one trick I use when debugging text layout problems
> is to turn on the "bbox". If the bbox is right but the text is in the
> wrong place, you know it is in the layout. If the bbox is in the
> wrong place, you know the problem is in the font metrics:
>
> boxprops = dict(facecolor='red')
> ax1.set_title('Top Plot', bbox=boxprops)
>
> JDH
|
|
From: John H. <jd...@gm...> - 2008-04-26 22:01:33
|
On Sat, Apr 26, 2008 at 2:04 PM, Eric Firing <ef...@ha...> wrote:
> The attached script, run on svn mpl, illustrates a positioning problem: note
> that the subplot titles are badly positioned in the 50 dpi version. I
> believe that changing from 150 to 50 dpi should yield a perfect scaling of
> everything in the plot, but it doesn't. There is a similar problem with a
> quiver key positioned outside the axes frame, but I don't have a trivial
> example yet; I am hoping that whatever solves the title positioning problem
> will take care of that also. If not, I will make a simple example and we
> can attack it separately.
There were two problems with title positioning. The first was that
the title offset transformation was hardcoded in pixels and not dpi,
and the second was that is was not getting notifed when the figure dpi
was changed. I changed the offset to read:
self.titleOffsetTrans = mtransforms.Affine2D().translate(
0.0, 5.0*self.figure.dpi/72.)
and added a callbacks registry to the figure instance so that
observers could be notified when dpi was changed (dpi used to be a
lazy value on the maintenance branch but is a plain-ol-value on the
trunk).
def on_dpi_change(fig):
self.titleOffsetTrans.clear().translate(
0.0, 5.0*fig.dpi/72.)
self.figure.callbacks.connect('dpi_changed', on_dpi_change)
It looks like the problem in the quiver code is that the "labelsep"
property reads the dpi when the QuiverKey is intiitalized but does not
get notified on dpi change. I added a callback there too so you
should test to see if this helps. The dpi setting is also referenced
in the _set_transform method. Since you are more familiar with the
quiver code that I am, and this hint may point you in the right
direction, I'll let you take a look at that and see if a callback is
needed.
On a related note, one trick I use when debugging text layout problems
is to turn on the "bbox". If the bbox is right but the text is in the
wrong place, you know it is in the layout. If the bbox is in the
wrong place, you know the problem is in the font metrics:
boxprops = dict(facecolor='red')
ax1.set_title('Top Plot', bbox=boxprops)
JDH
|
|
From: Eric F. <ef...@ha...> - 2008-04-26 19:04:56
|
The attached script, run on svn mpl, illustrates a positioning problem: note that the subplot titles are badly positioned in the 50 dpi version. I believe that changing from 150 to 50 dpi should yield a perfect scaling of everything in the plot, but it doesn't. There is a similar problem with a quiver key positioned outside the axes frame, but I don't have a trivial example yet; I am hoping that whatever solves the title positioning problem will take care of that also. If not, I will make a simple example and we can attack it separately. I have made a first attempt to figure out the cause of the positioning problem, and I have failed; I hope someone else will find it easier to track down. I also find that following the chain of events involved in savefig, and following the dpi setting, is rather difficult, and I wonder whether it might be possible to clarify and simplify anything. In any case, the dpi-related positioning bug (or bugs) is a significant problem for me now. Eric |
|
From: John H. <jd...@gm...> - 2008-04-26 14:04:36
|
On Fri, Apr 25, 2008 at 2:12 PM, Michael Droettboom <md...@st...> wrote: > I'm stumped. It looks like the code (and even the inputs to > draw_text_image) are virtually identical, modulo the differences between Agg > 2.3 and 2.4. Maybe the change is in Agg, and 2.4 is theoretically more > correct? We can always experiment with different kernels and parameters > until finding one that looks right. I'll poke around with this then -- I was hoping the report would trigger some memory about a font change you made. The differences in the 2.3 and 2.4 agg incantations were all I could see too -- I wonder if some default template parameter that is different in 2. is creeping in. JDH |
|
From: Paul K. <pki...@ni...> - 2008-04-26 03:37:48
|
On Thu, Apr 24, 2008 at 08:38:02AM -0400, Michael Droettboom wrote: > Paul Kienzle wrote: > > Hi, > > > > The superscripts in mpl don't seem to be placed at the correct height for > > small fonts. The y-tics on the attached plot shows this. The effect is > > similar in svg and pdf backends. > > > Thanks. When looking up the x-height, the code was not taking the font > size into account. This has been fixed on the branch and trunk. Thanks. It looks much better in png, but pdf has the subscript raised much higher, and svg isn't rendering fonts at all (see attached). > > I'm using 0.91.2 because the latest svn version gives me a KeyError for > > ufunc isfinite. > > > Can you provide the full traceback here so we can diagnose and fix this > problem? The only reference to isfinite seems to be in the PDF backend, > which is working for me, and is identical in 0.91.2 and trunk in that > respect. There is probably a more complex Numpy version interaction > going on. I recompiled with Numpy 1.1 and the problem went away. I'm going to ignore the issue for now. - Paul |