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
(3) |
2
(4) |
3
|
4
(2) |
5
|
6
(4) |
7
(11) |
8
(7) |
9
(9) |
10
(3) |
11
|
12
|
13
(4) |
14
(1) |
15
(24) |
16
(8) |
17
(11) |
18
(6) |
19
(2) |
20
(14) |
21
(13) |
22
(14) |
23
(3) |
24
(6) |
25
(2) |
26
|
27
(9) |
28
(18) |
29
(7) |
30
(15) |
31
(5) |
|
Andrew Hawryluk wrote: > The interpolation algorithm used in imshow() can produce spurious > results, as has been noted before: > > _http://article.gmane.org/gmane.comp.python.matplotlib.general/12062_ > > This happens because the data is converted to RGB before the > interpolation/resampling, rather than after. How hard would it be to > reverse this so that the data array is first interpolated & resampled > and then converted by cmap to RGB? To me, it looks very hard. The color mapping is done first, in python, and not repeated with every draw. The interpolation is done by agg at rendering time. Logically, I don't know any reason why agg shouldn't do what you suggest: interpolate the scalar field and then convert to rgb. Maybe agg can do it this way. If so, it would still take quite a bit of work by someone comfortable with agg (i.e., not me) to make the change. Eric
The interpolation algorithm used in imshow() can produce spurious results, as has been noted before: http://article.gmane.org/gmane.comp.python.matplotlib.general/12062 This happens because the data is converted to RGB before the interpolation/resampling, rather than after. How hard would it be to reverse this so that the data array is first interpolated & resampled and then converted by cmap to RGB? Andrew Hawryluk
On Wed, Oct 15, 2008 at 4:04 PM, Andrew Straw <str...@as...> wrote: > Dang that looks good. The only glitches that I see are: > > 1) after the ">>> hist(x, 100)""" line in the Python pre-formatted text > box, there's an extra line's worth of vertical space. > > 2) The heading "Plotting commands" overlaps slightly with the top line > of the following table. > > This is on Firefox 3 with Ubuntu 8.04. I'm seeing that too -- added a couple of hacks to fix it JDH
Dang that looks good. The only glitches that I see are: 1) after the ">>> hist(x, 100)""" line in the Python pre-formatted text box, there's an extra line's worth of vertical space. 2) The heading "Plotting commands" overlaps slightly with the top line of the following table. This is on Firefox 3 with Ubuntu 8.04. -Andrew John Hunter wrote: > I just took the plunge and pushed the beta website live. We are now > purely driven off the sphinx living in the doc dir. > > There is still plenty of material from the old site (stuff from the > FAQ, the credits, stuff from the user's guide, goals/known issues) so > once again please feel free to contribute. It's much easier now that > it is plain rest and sphinx. One area where all developers can easily > contribute is by extending the FAQ when we get common questions on the > mailing lists. I would also really like to see sections on contours, > images and colormaps, colorbars, time series plotting (eg the spectral > stuff), collections.... > > http://matplotlib.sourceforge.net > > Let me know if you find any problems. > > JDH > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
I just took the plunge and pushed the beta website live. We are now purely driven off the sphinx living in the doc dir. There is still plenty of material from the old site (stuff from the FAQ, the credits, stuff from the user's guide, goals/known issues) so once again please feel free to contribute. It's much easier now that it is plain rest and sphinx. One area where all developers can easily contribute is by extending the FAQ when we get common questions on the mailing lists. I would also really like to see sections on contours, images and colormaps, colorbars, time series plotting (eg the spectral stuff), collections.... http://matplotlib.sourceforge.net Let me know if you find any problems. JDH
hmm -------- Original Message -------- Jae-Joon Lee wrote: >> - the parameter numpoints should be used (it's ignored right now) >> > > Thanks Manuel. I guess we can simply reuse xdata_marker for this purpose. > > >> - Some private variables are accessed and a new RegularPolycollection is >> created (does this work eg. with a StarPolygonCollection? I haven't >> checked, but I don't think so !). Instead of creating a new >> RegularPolyCollection it might be more useful to make a copy of the >> existing object... I was thinking about a update_from() method for the >> Collection class(es) similar to update_from() for lines. >> > > By changing "RegularPolyCoolection" to "type(handles)", it works for > StarPolygonCollection. > > In Erik's current implementation, the markers in the legend have > varying colors, sizes, and y offsets. > The color variation seems fine. But do we need to vary the sizes and > y-offsets? My inclination is to use a fixed size (median?) and a fixed > y offset. How does Erik and others think? > > Regards, > > -JJ Attached is my current version of the patch. I've moved all of the properties-copying stuff to collections, which makes the changes legend.py more clearer (but I'm not fully happy with the patch and haven't commit anything yet) mm -- --------------------------------------- Manuel Metz ............ Stw@AIfA Argelander Institut fuer Astronomie Auf dem Huegel 71 (room 3.06) D - 53121 Bonn E-Mail: mm...@as... Web: www.astro.uni-bonn.de/~mmetz Phone: (+49) 228 / 73-3660 Fax: (+49) 228 / 73-3672 ---------------------------------------
Jae-Joon Lee wrote: >> - the parameter numpoints should be used (it's ignored right now) >> > > Thanks Manuel. I guess we can simply reuse xdata_marker for this purpose. > > >> - Some private variables are accessed and a new RegularPolycollection is >> created (does this work eg. with a StarPolygonCollection? I haven't >> checked, but I don't think so !). Instead of creating a new >> RegularPolyCollection it might be more useful to make a copy of the >> existing object... I was thinking about a update_from() method for the >> Collection class(es) similar to update_from() for lines. >> > > By changing "RegularPolyCoolection" to "type(handles)", it works for > StarPolygonCollection. > > In Erik's current implementation, the markers in the legend have > varying colors, sizes, and y offsets. > The color variation seems fine. But do we need to vary the sizes and > y-offsets? My inclination is to use a fixed size (median?) and a fixed > y offset. How does Erik and others think? > > Regards, > > -JJ Attached is my current version of the patch. I've moved all of the properties-copying stuff to collections, which makes the changes legend.py more clearer (but I'm not fully happy with the patch and haven't commit anything yet) mm
I found a few typos in artists.rst. Added a patch (don't want to commit it, because I'm not actively working on the docs) The first sentence of the section "Object containers" also needs to be fixed (or I don't understand it): "Now that we know how to inspect set the properties of a given object we want to configure, we need to now how to get at that object." "inspect" or "set" ??? mm
On Wed, Oct 15, 2008 at 2:42 PM, Michael Droettboom <md...@st...> wrote: > Weird. Have to admit I don't understand this HTML stuff very well... ;) Don't worry about it -- I am going to try and revert these changes with a thinner logo. I'll let you know when it's ready for testing. JDH
Weird. Have to admit I don't understand this HTML stuff very well... ;) John Hunter wrote: > On Wed, Oct 15, 2008 at 2:22 PM, Michael Droettboom <md...@st...> wrote: > >> Nope, I'm not seeing this, even when I shrink the window width way down. >> >> This is Firefox 2.0 on RHEL4. >> >> Does putting a between matplotlib and home help? >> > > I tried this, and it put matplotlib and home together, but on the line > below the icon. I tried to make sure there were no spaces between the > image and the start of the matplotlib word, but wasn't able to kill > the newline > > firefox 2.0.0.14 on solaris x86 > -- Michael Droettboom Science Software Branch Operations and Engineering Division Space Telescope Science Institute Operated by AURA for NASA
On Wed, Oct 15, 2008 at 2:22 PM, Michael Droettboom <md...@st...> wrote: > Nope, I'm not seeing this, even when I shrink the window width way down. > > This is Firefox 2.0 on RHEL4. > > Does putting a between matplotlib and home help? I tried this, and it put matplotlib and home together, but on the line below the icon. I tried to make sure there were no spaces between the image and the start of the matplotlib word, but wasn't able to kill the newline firefox 2.0.0.14 on solaris x86
Nope, I'm not seeing this, even when I shrink the window width way down. This is Firefox 2.0 on RHEL4. Does putting a between matplotlib and home help? Mike John Hunter wrote: > On Wed, Oct 15, 2008 at 10:17 AM, Michael Droettboom <md...@st...> wrote: > > >>> I'm happy to do use a smaller logo on the doc pages, but off hand do >>> not know how to do it. I am knee deep in trying to convert the >>> existing docs, because as you probably gathered the sphinx docs will >>> soon entirely replace the existing web pages entirely. So if you >>> could help with this logo change that would be great. Either route >>> (smaller logo or single icon) is fine by me..... >>> > > I am having problems in that the "matplotlib home" text is getting > wrapped with the new icon. Screenshot attached. Are you not seeing > this? > > I may work on a thinner default logo, because I like having the > consistency between pages.... > > JDH > -- Michael Droettboom Science Software Branch Operations and Engineering Division Space Telescope Science Institute Operated by AURA for NASA
On Wed, Oct 15, 2008 at 2:18 PM, John Hunter <jd...@gm...> wrote: > I am having problems in that the "matplotlib home" text is getting > wrapped with the new icon. Screenshot attached. Are you not seeing > this? umm, forgot the attachment
On Wed, Oct 15, 2008 at 10:17 AM, Michael Droettboom <md...@st...> wrote: >> I'm happy to do use a smaller logo on the doc pages, but off hand do >> not know how to do it. I am knee deep in trying to convert the >> existing docs, because as you probably gathered the sphinx docs will >> soon entirely replace the existing web pages entirely. So if you >> could help with this logo change that would be great. Either route >> (smaller logo or single icon) is fine by me..... I am having problems in that the "matplotlib home" text is getting wrapped with the new icon. Screenshot attached. Are you not seeing this? I may work on a thinner default logo, because I like having the consistency between pages.... JDH
"John Hunter" <jd...@gm...> writes: > On Wed, Oct 15, 2008 at 8:18 AM, Michael Droettboom <md...@st...> wrote: > > The new stylesheet for the docs looks great, John! > > I just ripped this off hook-line-and-sinker from the sphinx docs, and > added the few css bits you created earlier. They do look nice :-) Indeed they do. http://matplotlib.sourceforge.net/doc/html/index.html links to http://matplotlib.sourceforge.net/doc/html/goals.html which doesn't seem to exist yet. I guess this is temporary, but thought it worth pointing out. Chris
On Wed, Oct 15, 2008 at 10:28 AM, Chris Walker <ch...@ch...> wrote: > > http://matplotlib.sourceforge.net/doc/html/index.html links to > http://matplotlib.sourceforge.net/doc/html/goals.html which doesn't > seem to exist yet. > > I guess this is temporary, but thought it worth pointing out. Thanks -- all bug reports welcome because I may not be aware of them. The goals page is horribly out of date so I am just going to scrap it for now. We can resurrect it later if need be. JDH
John Hunter wrote: > On Wed, Oct 15, 2008 at 8:18 AM, Michael Droettboom <md...@st...> wrote: > >> The new stylesheet for the docs looks great, John! >> > > I just ripped this off hook-line-and-sinker from the sphinx docs, and > added the few css bits you created earlier. They do look nice :-) > > >> One extremely minor nit: perhaps the logo is a too large in this >> context. On smaller screens, like a 1024x768 laptop, it encompasses >> about a third of the usable browser window space. >> >> Would it be possible to keep it the current size for the main home page, >> but use a smaller version for the documentation pages? Or, to the >> extreme, just use a small icon-sized logo like in the Python 2.6 docs? >> > > I'm happy to do use a smaller logo on the doc pages, but off hand do > not know how to do it. I am knee deep in trying to convert the > existing docs, because as you probably gathered the sphinx docs will > soon entirely replace the existing web pages entirely. So if you > could help with this logo change that would be great. Either route > (smaller logo or single icon) is fine by me..... > Sure. I'll look into this. Mike -- Michael Droettboom Science Software Branch Operations and Engineering Division Space Telescope Science Institute Operated by AURA for NASA
I'm getting this when trying to commit to SVN this morning: > svn: Commit failed (details follow): > svn: MKACTIVITY of > '/svnroot/matplotlib/!svn/act/6b28eb9b-4b59-0410-81bc-d80e6be37be8': > 403 Forbidden (https://matplotlib.svn.sf.net) Googling suggests this occurs when the developer doesn't have write permissions (not the case here), or using http rather than https (also not the case). Filed a bug here: https://sourceforge.net/tracker/?func=detail&atid=200001&aid=2168647&group_id=1 Anyone else experiencing this? Mike -- Michael Droettboom Science Software Branch Operations and Engineering Division Space Telescope Science Institute Operated by AURA for NASA
On Wed, Oct 15, 2008 at 9:48 AM, Michael Droettboom <md...@st...> wrote: > Yep... just sent a message before seeing this one. The few possible causes > I could find through Google didn't seem relevant. > > Feel free to pile on to this bug report --> > > https://sourceforge.net/tracker/?func=detail&atid=200001&aid=2168647&group_id=1 > I did -- and since others are now adding comments that they see the same, it looks like a generic sf problem. Hopefully they will get it sorted out soon. JDH
On Wed, Oct 15, 2008 at 8:18 AM, Michael Droettboom <md...@st...> wrote: > The new stylesheet for the docs looks great, John! I just ripped this off hook-line-and-sinker from the sphinx docs, and added the few css bits you created earlier. They do look nice :-) > One extremely minor nit: perhaps the logo is a too large in this > context. On smaller screens, like a 1024x768 laptop, it encompasses > about a third of the usable browser window space. > > Would it be possible to keep it the current size for the main home page, > but use a smaller version for the documentation pages? Or, to the > extreme, just use a small icon-sized logo like in the Python 2.6 docs? I'm happy to do use a smaller logo on the doc pages, but off hand do not know how to do it. I am knee deep in trying to convert the existing docs, because as you probably gathered the sphinx docs will soon entirely replace the existing web pages entirely. So if you could help with this logo change that would be great. Either route (smaller logo or single icon) is fine by me.....
Yep... just sent a message before seeing this one. The few possible causes I could find through Google didn't seem relevant. Feel free to pile on to this bug report --> https://sourceforge.net/tracker/?func=detail&atid=200001&aid=2168647&group_id=1 Mike John Hunter wrote: > I am getting this error on a couple of machines when I try to commit > > johnh@flag:mpl> svn commit -m 'some more doc mods' > svn: Commit failed (details follow): > svn: MKACTIVITY of > '/svnroot/matplotlib/!svn/act/5726e9f3-f4eb-cc5e-bc97-ffd78106e3fc': > 403 Forbidden (https://matplotlib.svn.sourceforge.net) > > Anyone else seeing this and does anyone have any idea what is wrong? > > Thanks, > JDH > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > -- Michael Droettboom Science Software Branch Operations and Engineering Division Space Telescope Science Institute Operated by AURA for NASA
I am getting this error on a couple of machines when I try to commit johnh@flag:mpl> svn commit -m 'some more doc mods' svn: Commit failed (details follow): svn: MKACTIVITY of '/svnroot/matplotlib/!svn/act/5726e9f3-f4eb-cc5e-bc97-ffd78106e3fc': 403 Forbidden (https://matplotlib.svn.sourceforge.net) Anyone else seeing this and does anyone have any idea what is wrong? Thanks, JDH
The new stylesheet for the docs looks great, John! One extremely minor nit: perhaps the logo is a too large in this context. On smaller screens, like a 1024x768 laptop, it encompasses about a third of the usable browser window space. Would it be possible to keep it the current size for the main home page, but use a smaller version for the documentation pages? Or, to the extreme, just use a small icon-sized logo like in the Python 2.6 docs? http://www.python.org/doc/current/library/ Mike -- Michael Droettboom Science Software Branch Operations and Engineering Division Space Telescope Science Institute Operated by AURA for NASA
Thanks. Fixed in SVN. Benjamin Drung wrote: > Hello, > > there is a typo in matplotlibrc.template. Appended the fix. > > Greeting, > Benjamin > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > ------------------------------------------------------------------------ > > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel -- Michael Droettboom Science Software Branch Operations and Engineering Division Space Telescope Science Institute Operated by AURA for NASA