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
(14) |
2
(11) |
3
(19) |
4
(9) |
5
|
6
(5) |
7
|
8
|
9
|
10
|
11
|
12
(1) |
13
(9) |
14
(3) |
15
(8) |
16
|
17
(2) |
18
|
19
|
20
(6) |
21
(12) |
22
(3) |
23
(6) |
24
(5) |
25
|
26
(2) |
27
|
28
(1) |
29
(2) |
30
|
|
|
On Saturday, June 4, 2011, Eric Firing <ef...@ha...> wrote: > On 06/04/2011 06:05 AM, Benjamin Root wrote: >> On Sat, Jun 4, 2011 at 9:09 AM, Phil Elson <phi...@ho... >> <mailto:phi...@ho...>> wrote: >> >> >> The first line of code on the page >> http://matplotlib.sourceforge.net/devel/add_new_projection.html suggests >> that it is possible to give the projection directly to >> mpl.pyplot.plot but >> this does not work for me. >> >> Should this functionality exist? I am aware that the pyplot.plot >> function is >> autogenerated by boilerplate.py, but I am a little weary of >> modifying that. >> >> Any help gratefully received. >> >> >> Hmm, this doesn't seem 100% logically correct. I think the only case >> where this would work correctly is if the plot command would also >> trigger the creation of a new axes object. If the axes object already >> exists, then I seriously doubt this would work as advertised. Is that >> the case with your code? >> >> Ben Root > > Ben, > > The first paragraph of that doc page needs repair. Trivially, there are > two references to set_xscale. The problem pointed out above is more > serious. plot() has no facility for handling a projection kwarg, and I > don't think it would make sense to try to add one. pyplot functions > that accept the projection kwarg are axes, subplot, and subplots. > > Do you want to fix the paragraph, or should I? > I can take a look at it tonight. > Independently, I want to redo the FAQ discussion of draw(), show(), and > interactive versus non-interactive mode. It is possible that this topic > needs more attention elsewhere as well, but I want to start with the FAQ. > > Eric > Agreed, these are some fundamental functions and probably be set apart in a "getting started" section, maybe? Ben Root
On 06/04/2011 09:45 AM, Phil Elson wrote: > > I think the only case where this would work correctly is if the plot > command would also trigger the creation of a new axes object. > Can't see how this can ever happen given the pyplot.plot code, which > creates a standard axes without passing through any arguments. > > I agree that there are situations when it doesn't make sense to define > the projection when doing a plt.plot, maybe best to fix the projections > documentation instead of providing a keyword which is not always valid. > Either that, or plt.plot with a projection always makes a new axes? > > Attempting to pass the projection currently to plot results in an exception: > > plt>>> plt.plot(range(10), projection='polar') > ... > TypeError: There is no line property "projection" > Yes, the behavior makes sense, the documentation doesn't; it will be fixed. Eric
On 06/04/2011 09:08 AM, Eric Firing wrote: > Independently, I want to redo the FAQ discussion of draw(), show(), and > interactive versus non-interactive mode. It is possible that this topic > needs more attention elsewhere as well, but I want to start with the FAQ. I think I will move the "show" section entirely out of howto and put the revision in "usage". Eric > > Eric
> I think the only case where this would work correctly is if the plot command would also trigger the creation of a new axes object. Can't see how this can ever happen given the pyplot.plot code, which creates a standard axes without passing through any arguments. I agree that there are situations when it doesn't make sense to define the projection when doing a plt.plot, maybe best to fix the projections documentation instead of providing a keyword which is not always valid. Either that, or plt.plot with a projection always makes a new axes? Attempting to pass the projection currently to plot results in an exception: plt>>> plt.plot(range(10), projection='polar') ... TypeError: There is no line property "projection"
On 06/04/2011 06:05 AM, Benjamin Root wrote: > On Sat, Jun 4, 2011 at 9:09 AM, Phil Elson <phi...@ho... > <mailto:phi...@ho...>> wrote: > > > The first line of code on the page > http://matplotlib.sourceforge.net/devel/add_new_projection.html suggests > that it is possible to give the projection directly to > mpl.pyplot.plot but > this does not work for me. > > Should this functionality exist? I am aware that the pyplot.plot > function is > autogenerated by boilerplate.py, but I am a little weary of > modifying that. > > Any help gratefully received. > > > Hmm, this doesn't seem 100% logically correct. I think the only case > where this would work correctly is if the plot command would also > trigger the creation of a new axes object. If the axes object already > exists, then I seriously doubt this would work as advertised. Is that > the case with your code? > > Ben Root Ben, The first paragraph of that doc page needs repair. Trivially, there are two references to set_xscale. The problem pointed out above is more serious. plot() has no facility for handling a projection kwarg, and I don't think it would make sense to try to add one. pyplot functions that accept the projection kwarg are axes, subplot, and subplots. Do you want to fix the paragraph, or should I? Independently, I want to redo the FAQ discussion of draw(), show(), and interactive versus non-interactive mode. It is possible that this topic needs more attention elsewhere as well, but I want to start with the FAQ. Eric
On Sat, Jun 4, 2011 at 11:09 AM, Benjamin Root <ben...@ou...> wrote: > On Fri, Jun 3, 2011 at 6:15 PM, John Hunter <jd...@gm...> wrote: > >> >> >> On Fri, Jun 3, 2011 at 3:37 PM, Benjamin Root <ben...@ou...> wrote: >> >>> By the way, whoever is the one to push the docs up to sourceforge, you >>> can now do so from the v1.0.x-maint branch. I have built it on my computer >>> and all of my own changes appear correct. I couldn't test *everything* (my >>> LaTeX setup isn't quite right), but everything I intended to change appears >>> to be there. >>> >>> I just pushed the doc build from the maint branch up to sf. Take it for >> a test drive. Thanks for pushing through on the doc fix patch. >> >> JDH >> >> > No problem, glad to be of service. The pages look fine so far (although I > want to see if I can get it to be more friendly to people with smaller > screens such as an EeePC). There will be some additional work I will put in > to improve the docs for the 1.1.0 release. If anybody has a wishlist or > complaints about the current docs, just let me know. > > I have also tried building the docs from master after merging, and the > debugger problem happened again using the latest from sphinx. I will look > into it further to see if I can turn that "feature" off. > > Ben Root > Looks like it is a feature, not a bug. sphinx-build has a command-line option "-P" which fires off pdb whenever there is an unhandled exception. Removing that keeps the pdb from firing off, but this still doesn't solve our problem. The multiprocessing pool does not exit out and the process still hangs. Right now, I am trying to figure out why the --small option to make.py is causing an unhandled exception in master with the latest sphinx. It seems like bad command-line parsing by sphinx. Ben Root
On Fri, Jun 3, 2011 at 6:15 PM, John Hunter <jd...@gm...> wrote: > > > On Fri, Jun 3, 2011 at 3:37 PM, Benjamin Root <ben...@ou...> wrote: > >> By the way, whoever is the one to push the docs up to sourceforge, you can >> now do so from the v1.0.x-maint branch. I have built it on my computer and >> all of my own changes appear correct. I couldn't test *everything* (my >> LaTeX setup isn't quite right), but everything I intended to change appears >> to be there. >> >> I just pushed the doc build from the maint branch up to sf. Take it for a > test drive. Thanks for pushing through on the doc fix patch. > > JDH > > No problem, glad to be of service. The pages look fine so far (although I want to see if I can get it to be more friendly to people with smaller screens such as an EeePC). There will be some additional work I will put in to improve the docs for the 1.1.0 release. If anybody has a wishlist or complaints about the current docs, just let me know. I have also tried building the docs from master after merging, and the debugger problem happened again using the latest from sphinx. I will look into it further to see if I can turn that "feature" off. Ben Root
On Sat, Jun 4, 2011 at 9:09 AM, Phil Elson <phi...@ho...> wrote: > > The first line of code on the page > http://matplotlib.sourceforge.net/devel/add_new_projection.html suggests > that it is possible to give the projection directly to mpl.pyplot.plot but > this does not work for me. > > Should this functionality exist? I am aware that the pyplot.plot function > is > autogenerated by boilerplate.py, but I am a little weary of modifying that. > > Any help gratefully received. > Hmm, this doesn't seem 100% logically correct. I think the only case where this would work correctly is if the plot command would also trigger the creation of a new axes object. If the axes object already exists, then I seriously doubt this would work as advertised. Is that the case with your code? Ben Root
The first line of code on the page http://matplotlib.sourceforge.net/devel/add_new_projection.html suggests that it is possible to give the projection directly to mpl.pyplot.plot but this does not work for me. Should this functionality exist? I am aware that the pyplot.plot function is autogenerated by boilerplate.py, but I am a little weary of modifying that. Any help gratefully received. -- View this message in context: http://old.nabble.com/plt.plot-projection-kwarg-tp31772544p31772544.html Sent from the matplotlib - devel mailing list archive at Nabble.com.