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
|
2
|
3
|
4
(3) |
5
|
6
(2) |
7
(1) |
8
|
9
|
10
|
11
(2) |
12
|
13
(10) |
14
(24) |
15
(9) |
16
(2) |
17
(1) |
18
|
19
|
20
|
21
|
22
|
23
|
24
(1) |
25
|
26
|
27
|
28
|
29
|
30
|
31
|
|
|
|
|
|
|
From: Eric F. <ef...@ha...> - 2015-05-06 20:42:04
|
On 2015/05/06 9:19 AM, Federico Ariza wrote: > Hello > > Is there any reason why the "num" property is assigned to the manager > and not to the figure? I think this is because the figure is at the object-oriented API level. The manager is in the pyplot state-machine level. > Pyplot.gcf is to get the "current figure" not the "current manager". It is really "get current managed figure", combined with the original idea that the manager is the pyplot layer on top of the figure, with one manager per figure. The "current" concept comes from the state machine. > > In general this is not a problem. But I'm working on MEP23 where one > manager can contain several figures. And it would be pretty nice if I > could reference the figures by that number not the managers. > > A priori, do you see any problem with a PR changing that? It seems like it could work--but what will it do to existing user code? Eric > > Thanks > Federico > > > > ------------------------------------------------------------------------------ > One dashboard for servers and applications across Physical-Virtual-Cloud > Widest out-of-the-box monitoring support with 50+ applications > Performance metrics, stats and reports that give you Actionable Insights > Deep dive visibility with transaction tracing using APM Insight. > http://ad.doubleclick.net/ddm/clk/290420510;117567292;y > > > > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: Federico A. <ari...@gm...> - 2015-05-06 19:19:39
|
Hello Is there any reason why the "num" property is assigned to the manager and not to the figure? Pyplot.gcf is to get the "current figure" not the "current manager". In general this is not a problem. But I'm working on MEP23 where one manager can contain several figures. And it would be pretty nice if I could reference the figures by that number not the managers. A priori, do you see any problem with a PR changing that? Thanks Federico |
From: Thomas K. <th...@kl...> - 2015-05-04 17:53:17
|
On 4 May 2015 at 09:45, Thomas Caswell <tca...@gm...> wrote: > IPython and scikit image both have gitter rooms running that seem to > working well for them as well, is there any reason to go with slack over > gitter? > Gitter rooms are closely tied to Github repositories or organisations, so if you wanted to use it for something as broad as Python visualisation, you'd need a new Github organisation. That's not a big deal, of course, but it might be a small point against it for that kind of use case. Thomas |
From: Bryan V. de V. <br...@co...> - 2015-05-04 17:16:43
|
We've thought about gitter as well, personally my (slight) preference for Slack is that it does not require a GH account, and also, there is a nice OSS heroku app that provides a really nice "self-invite" button that shows how many users are on, too. You can see it on our test docs deploy: http://bokeh.pydata.org/en/test/index.html That said it is probably six of one, half dozen of the other. I'm not categorically opposed to looking into gitter some more. My hope (and intent) is really to have this as a place for users to congregate and self-support. We do intend to monitor, to the extent we can, but like you there is precious little bandwidth form core devs. Bryan > On May 4, 2015, at 11:45 AM, Thomas Caswell <tca...@gm...> wrote: > > That sounds reasonable to me. My only concern is getting enough (any?) bandwidth from enough of the core mpl developers. > > IPython and scikit image both have gitter rooms running that seem to working well for them as well, is there any reason to go with slack over gitter? > > Tom > > ---------- Forwarded message --------- > From: Bryan Van de Ven <br...@co...> > Date: Mon, May 4, 2015 at 11:44 AM > Subject: python data vis Slack channels? > To: Michael Droettboom <md...@st...>, <tca...@gm...> > > > Hi guys, > > We have been experimenting/toying with the idea of using a free Slack channel to provide a place for casual Bokeh user interactions. It occurred that it might be nice to have a single "pyvis.slack.com", that has channels for several OSS python vis libraries in one place. Would you have any interest in a #matplotlib channel there? If there is a better place to submit this proposal, please let me know. > > Regards, > > Bryan Van de Ven > |
From: Thomas C. <tca...@gm...> - 2015-05-04 16:45:47
|
That sounds reasonable to me. My only concern is getting enough (any?) bandwidth from enough of the core mpl developers. IPython and scikit image both have gitter rooms running that seem to working well for them as well, is there any reason to go with slack over gitter? Tom ---------- Forwarded message --------- From: Bryan Van de Ven <br...@co...> Date: Mon, May 4, 2015 at 11:44 AM Subject: python data vis Slack channels? To: Michael Droettboom <md...@st...>, <tca...@gm...> Hi guys, We have been experimenting/toying with the idea of using a free Slack channel to provide a place for casual Bokeh user interactions. It occurred that it might be nice to have a single "pyvis.slack.com", that has channels for several OSS python vis libraries in one place. Would you have any interest in a #matplotlib channel there? If there is a better place to submit this proposal, please let me know. Regards, Bryan Van de Ven |