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
|
From: elmar w. <el...@ne...> - 2015-07-04 12:58:08
|
having a look at seaborns ViolinPlotter class (https://github.com/mwaskom/seaborn/blob/master/seaborn/categorical.py), they explicit handle the special case of "no data" and "single unique datapoint" at line 580 ff. Could something similar be added to matplotlibs violinplot? On 04.07.2015 12:28, elmar werling wrote: > from an end user point of view, matplotlibs violinplot should just do > the same as seaborns violinplot. > > > ##################################################################### > import numpy as np > import matplotlib.pyplot as plt > import seaborn as sns > > N = 100 > y1 = np.random.randn(N) + 3.0 > y2 = np.random.randn(N) * 5.0 + 50 > y3 = np.ones(N) * 100 # causing plt.violinplot problem > y4 = np.arange(0) # causing plt.violinplot problem > > #plt.violinplot([y1, y2, y3, y4]) > > sns.violinplot(data=[y1, y2, y3, y4]) > > > On 03.07.2015 17:52, Thomas Caswell wrote: >> The KDE computation code is a copy of the KDE code from scipy >> (https://github.com/scipy/scipy/blob/master/scipy/stats/kde.py), I >> suggest raising this issue on their mailing list/github. >> >> I strongly suspect that violin plot should be doing data sanitation on >> the way in or catching exceptions like this, but I am not familiar >> enough with the math to be sure what it should do instead. >> >> Tom >> >> On Fri, Jul 3, 2015 at 11:41 AM elmar werling >> <el...@ne... >> <mailto:el...@ne...>> wrote: >> >> >> Hi all, >> >> violinplot is crashing with singular matrix data. See example. >> >> Is this behaviour for a singular matrix intended or just a bug? >> >> Cheers >> Elmar >> >> >> >> ##################################################### >> import numpy as np >> import matplotlib.pyplot as plt >> >> # data mimicing the >> # original cumsum data (may sum up to 100) >> N = 100 >> y1 = np.random.randn(N) + 3.0 >> y2 = np.random.randn(N) * 5.0 + 50 >> y3 = np.ones(N) * 100 # data set causing violinplot problem >> >> plt.violinplot([y1, y2, y3]) >> >> plt.boxplot([y1, y2, y3]) # ok >> plt.ylim(0,110) >> >> ##################################################### >> >> OS: Debian >> Anaconda 2.3.0 (64-bit) >> Python 2.7.10 >> numpy 2.3.0 >> matplotlib 1.4.3 >> >> >> ------------------------------------------------------------------------------ >> Don't Limit Your Business. Reach for the Cloud. >> GigeNET's Cloud Solutions provide you with the tools and support that >> you need to offload your IT needs and focus on growing your business. >> Configured For All Businesses. Start Your Cloud Today. >> https://www.gigenetcloud.com/ >> _______________________________________________ >> Matplotlib-devel mailing list >> Mat...@li... >> <mailto:Mat...@li...> >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> >> >> >> ------------------------------------------------------------------------------ >> Don't Limit Your Business. Reach for the Cloud. >> GigeNET's Cloud Solutions provide you with the tools and support that >> you need to offload your IT needs and focus on growing your business. >> Configured For All Businesses. Start Your Cloud Today. >> https://www.gigenetcloud.com/ >> >> >> >> _______________________________________________ >> Matplotlib-devel mailing list >> Mat...@li... >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> > > > ------------------------------------------------------------------------------ > Don't Limit Your Business. Reach for the Cloud. > GigeNET's Cloud Solutions provide you with the tools and support that > you need to offload your IT needs and focus on growing your business. > Configured For All Businesses. Start Your Cloud Today. > https://www.gigenetcloud.com/ > |
From: elmar w. <el...@ne...> - 2015-07-04 10:29:08
|
from an end user point of view, matplotlibs violinplot should just do the same as seaborns violinplot. ##################################################################### import numpy as np import matplotlib.pyplot as plt import seaborn as sns N = 100 y1 = np.random.randn(N) + 3.0 y2 = np.random.randn(N) * 5.0 + 50 y3 = np.ones(N) * 100 # causing plt.violinplot problem y4 = np.arange(0) # causing plt.violinplot problem #plt.violinplot([y1, y2, y3, y4]) sns.violinplot(data=[y1, y2, y3, y4]) On 03.07.2015 17:52, Thomas Caswell wrote: > The KDE computation code is a copy of the KDE code from scipy > (https://github.com/scipy/scipy/blob/master/scipy/stats/kde.py), I > suggest raising this issue on their mailing list/github. > > I strongly suspect that violin plot should be doing data sanitation on > the way in or catching exceptions like this, but I am not familiar > enough with the math to be sure what it should do instead. > > Tom > > On Fri, Jul 3, 2015 at 11:41 AM elmar werling > <el...@ne... > <mailto:el...@ne...>> wrote: > > > Hi all, > > violinplot is crashing with singular matrix data. See example. > > Is this behaviour for a singular matrix intended or just a bug? > > Cheers > Elmar > > > > ##################################################### > import numpy as np > import matplotlib.pyplot as plt > > # data mimicing the > # original cumsum data (may sum up to 100) > N = 100 > y1 = np.random.randn(N) + 3.0 > y2 = np.random.randn(N) * 5.0 + 50 > y3 = np.ones(N) * 100 # data set causing violinplot problem > > plt.violinplot([y1, y2, y3]) > > plt.boxplot([y1, y2, y3]) # ok > plt.ylim(0,110) > > ##################################################### > > OS: Debian > Anaconda 2.3.0 (64-bit) > Python 2.7.10 > numpy 2.3.0 > matplotlib 1.4.3 > > > ------------------------------------------------------------------------------ > Don't Limit Your Business. Reach for the Cloud. > GigeNET's Cloud Solutions provide you with the tools and support that > you need to offload your IT needs and focus on growing your business. > Configured For All Businesses. Start Your Cloud Today. > https://www.gigenetcloud.com/ > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > <mailto:Mat...@li...> > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > > > ------------------------------------------------------------------------------ > Don't Limit Your Business. Reach for the Cloud. > GigeNET's Cloud Solutions provide you with the tools and support that > you need to offload your IT needs and focus on growing your business. > Configured For All Businesses. Start Your Cloud Today. > https://www.gigenetcloud.com/ > > > > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: Thomas C. <tca...@gm...> - 2015-07-03 15:53:03
|
The KDE computation code is a copy of the KDE code from scipy ( https://github.com/scipy/scipy/blob/master/scipy/stats/kde.py), I suggest raising this issue on their mailing list/github. I strongly suspect that violin plot should be doing data sanitation on the way in or catching exceptions like this, but I am not familiar enough with the math to be sure what it should do instead. Tom On Fri, Jul 3, 2015 at 11:41 AM elmar werling <el...@ne...> wrote: > > Hi all, > > violinplot is crashing with singular matrix data. See example. > > Is this behaviour for a singular matrix intended or just a bug? > > Cheers > Elmar > > > > ##################################################### > import numpy as np > import matplotlib.pyplot as plt > > # data mimicing the > # original cumsum data (may sum up to 100) > N = 100 > y1 = np.random.randn(N) + 3.0 > y2 = np.random.randn(N) * 5.0 + 50 > y3 = np.ones(N) * 100 # data set causing violinplot problem > > plt.violinplot([y1, y2, y3]) > > plt.boxplot([y1, y2, y3]) # ok > plt.ylim(0,110) > > ##################################################### > > OS: Debian > Anaconda 2.3.0 (64-bit) > Python 2.7.10 > numpy 2.3.0 > matplotlib 1.4.3 > > > > ------------------------------------------------------------------------------ > Don't Limit Your Business. Reach for the Cloud. > GigeNET's Cloud Solutions provide you with the tools and support that > you need to offload your IT needs and focus on growing your business. > Configured For All Businesses. Start Your Cloud Today. > https://www.gigenetcloud.com/ > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: elmar w. <el...@ne...> - 2015-07-03 15:40:15
|
Hi all, violinplot is crashing with singular matrix data. See example. Is this behaviour for a singular matrix intended or just a bug? Cheers Elmar ##################################################### import numpy as np import matplotlib.pyplot as plt # data mimicing the # original cumsum data (may sum up to 100) N = 100 y1 = np.random.randn(N) + 3.0 y2 = np.random.randn(N) * 5.0 + 50 y3 = np.ones(N) * 100 # data set causing violinplot problem plt.violinplot([y1, y2, y3]) plt.boxplot([y1, y2, y3]) # ok plt.ylim(0,110) ##################################################### OS: Debian Anaconda 2.3.0 (64-bit) Python 2.7.10 numpy 2.3.0 matplotlib 1.4.3 |
From: Thomas C. <tca...@gm...> - 2015-07-02 03:35:48
|
We would like to tag 1.5 around scipy and it would be nice to get the new color maps out, even if they are not yet the default. On Wed, Jul 1, 2015, 11:13 PM Nathaniel Smith <nj...@po...> wrote: > On Jul 1, 2015 6:31 PM, "Eric Firing" <ef...@ha...> wrote: > > > > On 2015/07/01 1:56 PM, Nathaniel Smith wrote: > > > On Tue, Jun 16, 2015 at 7:14 PM, Nathaniel Smith <nj...@po...> > wrote: > > > > > > [...snip discussion of how option D was the favorite of 80% of people > > > in the survey...] > > > > > >> So the next question is where we go from here. > > > > One thing we need to do is get some of these maps into _cm.py via PR. > > We've been a bit distracted getting the software and talk together ahead > of scipy, but PR (with names) will follow within the next week or so. The > decision part is pretty orthogonal though I think? It's not like matplotlib > 2.0 is going to branch between now and scipy :-). > > > I would prefer not to have them go in as huge tables if they can be made > > more compact, either by being function-generated or by using the > > LinearSegmentedColormap mechanism with a moderate number of breakpoints. > > > > Suggestions? > > Depends on how you define "moderate", but my guess is that linear > segmented is the best approach -- the exact colormaps have a pretty terse > representation as bezier control points, but using this at runtime would > require pulling in the full colorspace apparatus as a dependency. Which I > guess has points in its favor for other reasons, but nonetheless. > > These kinds of details can be worked out in the PR review process, though. > The blocking issue is that we need a decision :-). > > -n > > ------------------------------------------------------------------------------ > Don't Limit Your Business. Reach for the Cloud. > GigeNET's Cloud Solutions provide you with the tools and support that > you need to offload your IT needs and focus on growing your business. > Configured For All Businesses. Start Your Cloud Today. > https://www.gigenetcloud.com/ > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: Nathaniel S. <nj...@po...> - 2015-07-02 03:13:19
|
On Jul 1, 2015 6:31 PM, "Eric Firing" <ef...@ha...> wrote: > > On 2015/07/01 1:56 PM, Nathaniel Smith wrote: > > On Tue, Jun 16, 2015 at 7:14 PM, Nathaniel Smith <nj...@po...> wrote: > > > > [...snip discussion of how option D was the favorite of 80% of people > > in the survey...] > > > >> So the next question is where we go from here. > > One thing we need to do is get some of these maps into _cm.py via PR. We've been a bit distracted getting the software and talk together ahead of scipy, but PR (with names) will follow within the next week or so. The decision part is pretty orthogonal though I think? It's not like matplotlib 2.0 is going to branch between now and scipy :-). > I would prefer not to have them go in as huge tables if they can be made > more compact, either by being function-generated or by using the > LinearSegmentedColormap mechanism with a moderate number of breakpoints. > > Suggestions? Depends on how you define "moderate", but my guess is that linear segmented is the best approach -- the exact colormaps have a pretty terse representation as bezier control points, but using this at runtime would require pulling in the full colorspace apparatus as a dependency. Which I guess has points in its favor for other reasons, but nonetheless. These kinds of details can be worked out in the PR review process, though. The blocking issue is that we need a decision :-). -n |
From: OceanWolf <jui...@ya...> - 2015-07-02 02:48:30
|
Not my cup of tea, but to get the ball rolling, how about "Truncated Rainbow"? [Red, Orange, Yellow, Green, Blue, Indigo, Violet][2:] From: Benjamin Root <ben...@ou...> To: Eric Firing <ef...@ha...> Cc: matplotlib development list <mat...@li...> Sent: Thursday, 2 July 2015, 4:19 Subject: Re: [matplotlib-devel] Colormap survey results I have been thinking a bit about naming. We could always go the route of "Heinz 57", "Chanel No. 5", or "Preparation H". Not saying that "MPL-d" is a catchy name or not, but.. :-P Ben Root On Wed, Jul 1, 2015 at 9:31 PM, Eric Firing <ef...@ha...> wrote: On 2015/07/01 1:56 PM, Nathaniel Smith wrote: > On Tue, Jun 16, 2015 at 7:14 PM, Nathaniel Smith <nj...@po...> wrote: > > [...snip discussion of how option D was the favorite of 80% of people > in the survey...] > >> So the next question is where we go from here. One thing we need to do is get some of these maps into _cm.py via PR. I would prefer not to have them go in as huge tables if they can be made more compact, either by being function-generated or by using the LinearSegmentedColormap mechanism with a moderate number of breakpoints. Suggestions? (We will also need a naming scheme.) Eric ------------------------------------------------------------------------------ Don't Limit Your Business. Reach for the Cloud. GigeNET's Cloud Solutions provide you with the tools and support that you need to offload your IT needs and focus on growing your business. Configured For All Businesses. Start Your Cloud Today. https://www.gigenetcloud.com/ _______________________________________________ Matplotlib-devel mailing list Mat...@li... https://lists.sourceforge.net/lists/listinfo/matplotlib-devel ------------------------------------------------------------------------------ Don't Limit Your Business. Reach for the Cloud. GigeNET's Cloud Solutions provide you with the tools and support that you need to offload your IT needs and focus on growing your business. Configured For All Businesses. Start Your Cloud Today. https://www.gigenetcloud.com/ _______________________________________________ Matplotlib-devel mailing list Mat...@li... https://lists.sourceforge.net/lists/listinfo/matplotlib-devel |
From: Benjamin R. <ben...@ou...> - 2015-07-02 02:19:51
|
I have been thinking a bit about naming. We could always go the route of "Heinz 57", "Chanel No. 5", or "Preparation H". Not saying that "MPL-d" is a catchy name or not, but.. :-P Ben Root On Wed, Jul 1, 2015 at 9:31 PM, Eric Firing <ef...@ha...> wrote: > On 2015/07/01 1:56 PM, Nathaniel Smith wrote: > > On Tue, Jun 16, 2015 at 7:14 PM, Nathaniel Smith <nj...@po...> wrote: > > > > [...snip discussion of how option D was the favorite of 80% of people > > in the survey...] > > > >> So the next question is where we go from here. > > One thing we need to do is get some of these maps into _cm.py via PR. > I would prefer not to have them go in as huge tables if they can be made > more compact, either by being function-generated or by using the > LinearSegmentedColormap mechanism with a moderate number of breakpoints. > > Suggestions? > > (We will also need a naming scheme.) > > Eric > > > > ------------------------------------------------------------------------------ > Don't Limit Your Business. Reach for the Cloud. > GigeNET's Cloud Solutions provide you with the tools and support that > you need to offload your IT needs and focus on growing your business. > Configured For All Businesses. Start Your Cloud Today. > https://www.gigenetcloud.com/ > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: Eric F. <ef...@ha...> - 2015-07-02 01:31:32
|
On 2015/07/01 1:56 PM, Nathaniel Smith wrote: > On Tue, Jun 16, 2015 at 7:14 PM, Nathaniel Smith <nj...@po...> wrote: > > [...snip discussion of how option D was the favorite of 80% of people > in the survey...] > >> So the next question is where we go from here. One thing we need to do is get some of these maps into _cm.py via PR. I would prefer not to have them go in as huge tables if they can be made more compact, either by being function-generated or by using the LinearSegmentedColormap mechanism with a moderate number of breakpoints. Suggestions? (We will also need a naming scheme.) Eric |
From: Nathaniel S. <nj...@po...> - 2015-07-01 23:56:21
|
On Tue, Jun 16, 2015 at 7:14 PM, Nathaniel Smith <nj...@po...> wrote: [...snip discussion of how option D was the favorite of 80% of people in the survey...] > So the next question is where we go from here. We need to pick a color > for this bikeshed at some point. One theory is that the next step is > to propose a bunch of variations on option D and have another round of > voting etc. Another is that we should just call it a day and decide > now :-). > > For reference, here's option D: > https://bids.github.io/colormap/images/screenshots/option_d.png > > And here are the other greenish colormaps that have been mentioned: > https://bids.github.io/colormap/images/screenshots/fake_parula.png > https://bids.github.io/colormap/images/screenshots/erics-RdBuGnYl_r.png > https://bids.github.io/colormap/images/screenshots/erics-RdBuGnYl_r_v2.png > https://bids.github.io/colormap/images/screenshots/joes-blu_grn_pnk2.png > > My personal feeling is that all these alternatives are basically > reasonable colormaps, but compared to option D I find them kinda ugly, > and, more importantly, substantially worse for colorblind users, which > IMO should outweigh a marginal/debateable improvement for the rest of > us. > > So if it were up to me I'd be inclined to declare we've reached the > point of diminishing returns and go with D, but I don't know how > everyone else is feeling. Shall we just go for it? So it's been 2 weeks with no real followup on this. I don't really care where we end up (though I selfishly would somewhat prefer if there is a decision before our SciPy talk next week, just so we can tell people what it is :-)), but we need to resolve this somehow. What's the plan? Michael, Thomas, I see from the credits page that you're the Official Lead Developers :-), so given the intrinsic bikeshedditude of this topic I suspect it may come down to you taking a deep breath and making a decision (or at least declaring some specific concrete process for making the decision)? -n -- Nathaniel J. Smith -- http://vorpus.org |
From: Thomas C. <tca...@gm...> - 2015-07-01 23:29:50
|
Hey all, I just moved the stand alone cycler repo to be owned by the matplotlib org in preparation for it (hopefully) be a required dep in the near future. The plan is to get a v0.9 up on pypi ASAP and I will be pushing directly to master for the time being. Once it is tagged and posted I would like to go to the standard PR work flow. The idea is to have a tagged version in the wild for people to play with and then tag cycler v1.0 along with mpl v1.5. Tom |
From: Ryan M. <rm...@gm...> - 2015-06-29 16:09:19
|
I'll be there all week, though only most of Saturday for the sprints. Would love to get #4063, though mostly to further my goal of Python domination in meteorology. Ryan On Fri, Jun 26, 2015 at 9:44 PM, Neil Girdhar <mis...@gm...> wrote: > Just writing send a +1 from a distance. I'm really looking forward to > traitlets. I think it would make me much more likely to contribute to > matplotlib in the future. > > Good luck! > > Neil > > On Mon, Jun 22, 2015 at 3:04 PM, Brian Granger <ell...@gm...> > wrote: > >> I will be around and would love to participate. >> >> On Mon, Jun 22, 2015 at 5:39 AM, Thomas Caswell <tca...@gm...> >> wrote: >> > Who will be around for the sprints? We should start to come up with a >> list >> > what we want to work on. There are a number of issues tagged as >> > 'hack-a-thon' which are good candidates for novice contributors. >> > >> > A few major projects that need attention are: >> > >> > - sorting out how to reliably find freetype everywhere (we should >> probably >> > pull in someone from enthought on this if possible as they are one of >> the >> > problem cases). This might be solved by using pkg-config everywhere? >> > - through review of MEP27 and the extension of MEP22 to the rest of the >> > interactive backends >> > - discussions with IPython folks about what rolling traitlets into >> Artist >> > would look like >> > >> > Tom >> > >> > >> ------------------------------------------------------------------------------ >> > Monitor 25 network devices or servers for free with OpManager! >> > OpManager is web-based network management software that monitors >> > network devices and physical & virtual servers, alerts via email & sms >> > for fault. Monitor 25 devices for free with no restriction. Download now >> > http://ad.doubleclick.net/ddm/clk/292181274;119417398;o >> > _______________________________________________ >> > Matplotlib-devel mailing list >> > Mat...@li... >> > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> > >> >> >> >> -- >> Brian E. Granger >> Cal Poly State University, San Luis Obispo >> @ellisonbg on Twitter and GitHub >> bgr...@ca... and ell...@gm... >> >> >> ------------------------------------------------------------------------------ >> Monitor 25 network devices or servers for free with OpManager! >> OpManager is web-based network management software that monitors >> network devices and physical & virtual servers, alerts via email & sms >> for fault. Monitor 25 devices for free with no restriction. Download now >> http://ad.doubleclick.net/ddm/clk/292181274;119417398;o >> _______________________________________________ >> Matplotlib-devel mailing list >> Mat...@li... >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> > > > > ------------------------------------------------------------------------------ > Monitor 25 network devices or servers for free with OpManager! > OpManager is web-based network management software that monitors > network devices and physical & virtual servers, alerts via email & sms > for fault. Monitor 25 devices for free with no restriction. Download now > http://ad.doubleclick.net/ddm/clk/292181274;119417398;o > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > -- Ryan May Graduate Research Assistant School of Meteorology University of Oklahoma |
From: Neil G. <mis...@gm...> - 2015-06-27 03:45:10
|
Just writing send a +1 from a distance. I'm really looking forward to traitlets. I think it would make me much more likely to contribute to matplotlib in the future. Good luck! Neil On Mon, Jun 22, 2015 at 3:04 PM, Brian Granger <ell...@gm...> wrote: > I will be around and would love to participate. > > On Mon, Jun 22, 2015 at 5:39 AM, Thomas Caswell <tca...@gm...> > wrote: > > Who will be around for the sprints? We should start to come up with a > list > > what we want to work on. There are a number of issues tagged as > > 'hack-a-thon' which are good candidates for novice contributors. > > > > A few major projects that need attention are: > > > > - sorting out how to reliably find freetype everywhere (we should > probably > > pull in someone from enthought on this if possible as they are one of the > > problem cases). This might be solved by using pkg-config everywhere? > > - through review of MEP27 and the extension of MEP22 to the rest of the > > interactive backends > > - discussions with IPython folks about what rolling traitlets into > Artist > > would look like > > > > Tom > > > > > ------------------------------------------------------------------------------ > > Monitor 25 network devices or servers for free with OpManager! > > OpManager is web-based network management software that monitors > > network devices and physical & virtual servers, alerts via email & sms > > for fault. Monitor 25 devices for free with no restriction. Download now > > http://ad.doubleclick.net/ddm/clk/292181274;119417398;o > > _______________________________________________ > > Matplotlib-devel mailing list > > Mat...@li... > > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > > > > > -- > Brian E. Granger > Cal Poly State University, San Luis Obispo > @ellisonbg on Twitter and GitHub > bgr...@ca... and ell...@gm... > > > ------------------------------------------------------------------------------ > Monitor 25 network devices or servers for free with OpManager! > OpManager is web-based network management software that monitors > network devices and physical & virtual servers, alerts via email & sms > for fault. Monitor 25 devices for free with no restriction. Download now > http://ad.doubleclick.net/ddm/clk/292181274;119417398;o > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: Thomas C. <tca...@gm...> - 2015-06-26 00:55:23
|
Yes, the size related functions in collections were added in the 1.4 series. See http://matplotlib.org/users/whats_new.html#added-size-related-functions-to-specialized-collections Tom On Thu, Jun 25, 2015, 11:50 AM Benjamin Root <ben...@ou...> wrote: > Which version of matplotlib are you using. The set_sizes() feature was > added for v1.4, I think. > > On Thu, Jun 25, 2015 at 11:16 AM, <kei...@bt...> wrote: > >> I get this error. I have previously got the error "'PathCollection' >> object has no attribute 'set_sizes'" with other code, even though it is >> documented at >> http://matplotlib.org/1.4.3/api/collections_api.html?highlight=set_color#matplotlib.collections.PathCollection.set_sizes >> . >> >> >> Keith >> >> >> kbriggs:~/python> python3 rain.py >> Traceback (most recent call last): >> File "rain.py", line 65, in <module> >> animation = FuncAnimation(fig, update, interval=10) >> File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line >> 1011, in __init__ >> TimedAnimation.__init__(self, fig, **kwargs) >> File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line >> 865, in __init__ >> *args, **kwargs) >> File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line >> 546, in __init__ >> self._init_draw() >> File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line >> 1036, in _init_draw >> self._draw_frame(next(self.new_frame_seq())) >> File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line >> 1050, in _draw_frame >> self._drawn_artists = self._func(framedata, *self._args) >> File "rain.py", line 59, in update >> scat.set_sizes(rain_drops['size']) >> AttributeError: 'PathCollection' object has no attribute 'set_sizes' >> >> >> >> >> >> ------------------------------------------------------------------------------ >> Monitor 25 network devices or servers for free with OpManager! >> OpManager is web-based network management software that monitors >> network devices and physical & virtual servers, alerts via email & sms >> for fault. Monitor 25 devices for free with no restriction. Download now >> http://ad.doubleclick.net/ddm/clk/292181274;119417398;o >> _______________________________________________ >> Matplotlib-devel mailing list >> Mat...@li... >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> >> > > ------------------------------------------------------------------------------ > Monitor 25 network devices or servers for free with OpManager! > OpManager is web-based network management software that monitors > network devices and physical & virtual servers, alerts via email & sms > for fault. Monitor 25 devices for free with no restriction. Download now > http://ad.doubleclick.net/ddm/clk/292181274;119417398;o > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: Benjamin R. <ben...@ou...> - 2015-06-25 15:49:15
|
Which version of matplotlib are you using. The set_sizes() feature was added for v1.4, I think. On Thu, Jun 25, 2015 at 11:16 AM, <kei...@bt...> wrote: > I get this error. I have previously got the error "'PathCollection' > object has no attribute 'set_sizes'" with other code, even though it is > documented at > http://matplotlib.org/1.4.3/api/collections_api.html?highlight=set_color#matplotlib.collections.PathCollection.set_sizes > . > > > Keith > > > kbriggs:~/python> python3 rain.py > Traceback (most recent call last): > File "rain.py", line 65, in <module> > animation = FuncAnimation(fig, update, interval=10) > File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line > 1011, in __init__ > TimedAnimation.__init__(self, fig, **kwargs) > File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line 865, > in __init__ > *args, **kwargs) > File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line 546, > in __init__ > self._init_draw() > File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line > 1036, in _init_draw > self._draw_frame(next(self.new_frame_seq())) > File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line > 1050, in _draw_frame > self._drawn_artists = self._func(framedata, *self._args) > File "rain.py", line 59, in update > scat.set_sizes(rain_drops['size']) > AttributeError: 'PathCollection' object has no attribute 'set_sizes' > > > > > > ------------------------------------------------------------------------------ > Monitor 25 network devices or servers for free with OpManager! > OpManager is web-based network management software that monitors > network devices and physical & virtual servers, alerts via email & sms > for fault. Monitor 25 devices for free with no restriction. Download now > http://ad.doubleclick.net/ddm/clk/292181274;119417398;o > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > |
From: <kei...@bt...> - 2015-06-25 15:29:06
|
I get this error. I have previously got the error "'PathCollection' object has no attribute 'set_sizes'" with other code, even though it is documented at http://matplotlib.org/1.4.3/api/collections_api.html?highlight=set_color#matplotlib.collections.PathCollection.set_sizes . Keith kbriggs:~/python> python3 rain.py Traceback (most recent call last): File "rain.py", line 65, in <module> animation = FuncAnimation(fig, update, interval=10) File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line 1011, in __init__ TimedAnimation.__init__(self, fig, **kwargs) File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line 865, in __init__ *args, **kwargs) File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line 546, in __init__ self._init_draw() File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line 1036, in _init_draw self._draw_frame(next(self.new_frame_seq())) File "/usr/lib/python3/dist-packages/matplotlib/animation.py", line 1050, in _draw_frame self._drawn_artists = self._func(framedata, *self._args) File "rain.py", line 59, in update scat.set_sizes(rain_drops['size']) AttributeError: 'PathCollection' object has no attribute 'set_sizes' |
From: Benjamin R. <ben...@ou...> - 2015-06-24 13:29:16
|
The more, the merrier! On Tue, Jun 23, 2015 at 9:42 PM, Joe Kington <jof...@gm...> wrote: > Absolutely! Assuming Ben's okay with it, I think we could definitely use > the help! > Cheers, > -Joe > > On Mon, Jun 22, 2015 at 5:58 AM, Jens Nielsen <jen...@gm...> > wrote: > >> Hi Ben and Joe, >> >> I will be there for the tutorials doing the shell part of software >> carpentry but I am available to help you with the matplotlib tutorial if >> you can use any additional help >> >> >> Jens >> >> >> >> >> tir. 31. mar. 2015 kl. 17.07 skrev Jens Nielsen <jen...@gm...>: >> >>> Hi >>> >>> I am expecting to be at Scipy but I have already volunteered to help out >>> with the Software carpentry tutorials. >>> I have the impression that they might have more helpers than needed in >>> which case I would be happy to help with the Matplotlib tutorials. >>> >>> Jens >>> >>> >>> >>> tir. 31. mar. 2015 kl. 16.45 skrev Benjamin Root <ben...@ou...>: >>> >>>> Joe, it would be great to have you as a co-presenter. >>>> >>>> Nelle, I am guessing I should contact Krystyn to update my proposal to >>>> include Joe? >>>> >>>> Ben >>>> >>>> On Mon, Mar 30, 2015 at 8:45 PM, Joe Kington <jof...@gm...> >>>> wrote: >>>> >>>>> High praise, coming from you guys. Thanks! :) >>>>> -Joe >>>>> >>>>> On Mon, Mar 30, 2015 at 6:53 PM, Paul Hobson <pmh...@gm...> >>>>> wrote: >>>>> >>>>>> Joe, >>>>>> >>>>>> You should introduce yourself as "that guy who did that paw detection >>>>>> post that saved that one guy's research". >>>>>> -P >>>>>> >>>>>> — >>>>>> Sent from Mailbox <https://www.dropbox.com/mailbox> >>>>>> >>>>>> >>>>>> On Mon, Mar 30, 2015 at 4:52 PM, Thomas Caswell <tca...@gm...> >>>>>> wrote: >>>>>> >>>>>>> +1 from me. I suspect many people got their start learning mpl from >>>>>>> you on SO ;) >>>>>>> >>>>>>> Tom >>>>>>> >>>>>>> On Mon, Mar 30, 2015 at 7:17 PM Joe Kington <jof...@gm...> >>>>>>> wrote: >>>>>>> >>>>>>>> If you don't mind a "non-core" person doing the tutorial, I'll be >>>>>>>> there this year, and I'd be happy to be Ben's backup for teaching it. >>>>>>>> Cheers! >>>>>>>> -Joe >>>>>>>> >>>>>>>> On Sun, Mar 29, 2015 at 9:17 PM, Thomas Caswell <tca...@gm... >>>>>>>> > wrote: >>>>>>>> >>>>>>>>> Ben, >>>>>>>>> >>>>>>>>> Have you sorted out if you can make scipy this year and does >>>>>>>>> anyone want to be back up on teaching the tutorial? >>>>>>>>> >>>>>>>>> It seems a shame to not have a mpl tutorial available. >>>>>>>>> >>>>>>>>> I am probably going to submit a 'state of the library' talk and do >>>>>>>>> not want to do both. >>>>>>>>> >>>>>>>>> Tom >>>>>>>>> >>>>>>>>> On Thu, Mar 26, 2015 at 5:06 PM Michael Droettboom < >>>>>>>>> md...@st...> wrote: >>>>>>>>> >>>>>>>>>> This sounds great. Unfortunately, I can't attend Scipy this >>>>>>>>>> year due to a family commitment, but would be more than happy to help put >>>>>>>>>> together and review materials beforehand. >>>>>>>>>> >>>>>>>>>> Cheers, >>>>>>>>>> Mike >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> On 03/26/2015 10:59 AM, Thomas Caswell wrote: >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> I also think we should have a 'state of the library' talk. >>>>>>>>>> >>>>>>>>>> We definitely have a few important things to announce/show off: >>>>>>>>>> - FSA >>>>>>>>>> - nbagg/notebook >>>>>>>>>> - new default colors >>>>>>>>>> - style module >>>>>>>>>> >>>>>>>>>> and should have a couple more by July >>>>>>>>>> - sane serialize/deserialize + interop with plotly/bokeh >>>>>>>>>> - better toolbar >>>>>>>>>> - better interactive OO >>>>>>>>>> - improved docs >>>>>>>>>> >>>>>>>>>> I will be there for the main conference and the sprints and am >>>>>>>>>> willing to give this talk, but will defer if someone else wants to do it. >>>>>>>>>> >>>>>>>>>> Does anyone want to volunteer to be Ben's second on his tutorial? >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> On Fri, Mar 13, 2015 at 2:46 PM Olga Botvinnik <obo...@uc...> >>>>>>>>>> wrote: >>>>>>>>>> >>>>>>>>>>> I'd be very interested in hearing a "state of matplotlib" talk. >>>>>>>>>>> >>>>>>>>>>> On Fri, Mar 13, 2015, 11:29 Phil Elson <pel...@gm...> >>>>>>>>>>> wrote: >>>>>>>>>>> >>>>>>>>>>>> Orchestrating MPL tutorials and talks in this thread would be a >>>>>>>>>>>> good idea. I'd be happy to help anybody planning on submitting anything >>>>>>>>>>>> relating specifically to matplotlib, and wonder if we should do a "state of >>>>>>>>>>>> matplotlib" type talk similar to the one Mike did 2 years ago. >>>>>>>>>>>> >>>>>>>>>>>> On 13 March 2015 at 02:05, Benjamin Root <ben...@ou...> >>>>>>>>>>>> wrote: >>>>>>>>>>>> >>>>>>>>>>>>> Yes, I plan to submit my time-honored, and requested >>>>>>>>>>>>> "Anatomy of Matplotlib" tutorial. Now, I am not entirely sure I will be >>>>>>>>>>>>> able to attend the conference this year, so perhaps someone else might be >>>>>>>>>>>>> willing to step in and give it this year? >>>>>>>>>>>>> >>>>>>>>>>>>> Note that my tutorial is geared for beginners. So there is >>>>>>>>>>>>> still plenty of opportunity for someone else to submit a tutorial for more >>>>>>>>>>>>> advanced users! >>>>>>>>>>>>> >>>>>>>>>>>>> Cheers! >>>>>>>>>>>>> Ben Root >>>>>>>>>>>>> >>>>>>>>>>>>> On Thu, Mar 12, 2015 at 6:46 PM, Nelle Varoquaux < >>>>>>>>>>>>> nel...@gm...> wrote: >>>>>>>>>>>>> >>>>>>>>>>>>>> Hi everyone, >>>>>>>>>>>>>> >>>>>>>>>>>>>> Is someone submitting a tutorial on matplotlib? The call for >>>>>>>>>>>>>> tutorial is open, and I think it would be nice to have one on matplotlib. >>>>>>>>>>>>>> >>>>>>>>>>>>>> Cheers, >>>>>>>>>>>>>> N >>>>>>>>>>>>>> >>>>>>>>>>>>>> ---------- Forwarded message ---------- >>>>>>>>>>>>>> From: SciPy 2015 Organizers <sci...@sc...> >>>>>>>>>>>>>> Date: 11 March 2015 at 01:02 >>>>>>>>>>>>>> Subject: SciPy 2015 CFP Email 2 >>>>>>>>>>>>>> To: nel...@gm... >>>>>>>>>>>>>> >>>>>>>>>>>>>> >>>>>>>>>>>>>> [image: SciPy 2015 Logo] >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org/ehome/index.php%7CQ%7Ceventid%7CE%7C115969%7CA%7C> >>>>>>>>>>>>>> >>>>>>>>>>>>>> Tick-Tock, Tick-Tock: >>>>>>>>>>>>>> T-Minus 6 Days for Tutorial Submissions >>>>>>>>>>>>>> *Due Date: March 16, 2015* >>>>>>>>>>>>>> >>>>>>>>>>>>>> The SciPy experience kicks off with two days of tutorials >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org/ehome/115969/259288/%7CQ%7C> >>>>>>>>>>>>>> (July 6-7). These sessions provide extremely affordable access to expert >>>>>>>>>>>>>> training, and consistently receive fantastic feedback from participants. >>>>>>>>>>>>>> We're looking for submissions on topics from introductory to advanced - >>>>>>>>>>>>>> we'll have attendees across the gamut looking to learn. Plus, you can earn >>>>>>>>>>>>>> an instructor stipend to apply towards your conference participation. Visit >>>>>>>>>>>>>> the SciPy 2015 website for details >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org> >>>>>>>>>>>>>> or submit a proposal here >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.scipy2015.scipy.org/eselectv2/frontend/index/115969> >>>>>>>>>>>>>> . >>>>>>>>>>>>>> >>>>>>>>>>>>>> Submit a Tutorial Proposal Here >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.scipy2015.scipy.org/eselectv2/frontend/index/115969> Talk >>>>>>>>>>>>>> and Poster Proposals Due April 1st >>>>>>>>>>>>>> >>>>>>>>>>>>>> There's always something new and exciting going on in the >>>>>>>>>>>>>> world of Science + Python, this is your chance to get up and talk about it! >>>>>>>>>>>>>> >>>>>>>>>>>>>> *Visit the SciPy 2015 website >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org/ehome/index.php%7CQ%7Ceventid%7CE%7C115969%7CA%7C> >>>>>>>>>>>>>> for full details or click here to submit a proposal >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.scipy2015.scipy.org/eselectv2/frontend/index/115969>.* >>>>>>>>>>>>>> Choose a topic in one of the 3 main conference tracks: >>>>>>>>>>>>>> >>>>>>>>>>>>>> - Scientific Computing in Python (General track) >>>>>>>>>>>>>> - Python in Data Science >>>>>>>>>>>>>> - Quantitative and Computational Social Sciences >>>>>>>>>>>>>> >>>>>>>>>>>>>> * And/or submit for one of the 7 domain-specific >>>>>>>>>>>>>> mini-symposia >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.scipy2015.scipy.org/eselectv2/frontend/index/115969>:* >>>>>>>>>>>>>> >>>>>>>>>>>>>> - Astronomy and astrophysics >>>>>>>>>>>>>> - Computational life and medical sciences >>>>>>>>>>>>>> - Engineering >>>>>>>>>>>>>> - Geographic information systems (GIS) >>>>>>>>>>>>>> - Geophysics >>>>>>>>>>>>>> - Oceanography and meteorology >>>>>>>>>>>>>> - Visualization, vision and imaging >>>>>>>>>>>>>> >>>>>>>>>>>>>> Submit a Talk or Poster Proposal Here >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.scipy2015.scipy.org/eselectv2/frontend/index/115969> Need >>>>>>>>>>>>>> some inspiration? Follow @SciPy on Twitter >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=https://twitter.com/scipyconf> >>>>>>>>>>>>>> for highlights from previous SciPy conferences and all of the latest 2015 >>>>>>>>>>>>>> updates. >>>>>>>>>>>>>> >>>>>>>>>>>>>> - Previous year's conferences with talk information >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://conference.scipy.org/past.html> >>>>>>>>>>>>>> - SciPy 2014 Talk & Tutorial Video playlist >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.youtube.com/playlist%7CQ%7Clist%7CE%7CPLYx7XA2nY5GfuhCvStxgbynFNrxr3VFog> >>>>>>>>>>>>>> - SciPy 2013 Talk & Tutorial Video playlist >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.youtube.com/playlist%7CQ%7Clist%7CE%7CPLYx7XA2nY5GeTWcUQTbXVdllyp-Ie3r-y> >>>>>>>>>>>>>> >>>>>>>>>>>>>> Financial Scholarship Applications Now Being Accepted >>>>>>>>>>>>>> >>>>>>>>>>>>>> With the support of our sponsors, the SciPy conference >>>>>>>>>>>>>> provides financial assistance to attendees based on both community >>>>>>>>>>>>>> contribution and financial need. >>>>>>>>>>>>>> >>>>>>>>>>>>>> In 2014 we were able to support 19 applicants, including 5 >>>>>>>>>>>>>> diversity aid recipients, selected for their outstanding contributions to >>>>>>>>>>>>>> open source scientific Python projects. *If you'd like to be >>>>>>>>>>>>>> considered for financial scholarship, please apply here >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org/ehome/115969/259279/?&> >>>>>>>>>>>>>> before April 15, 2015.* >>>>>>>>>>>>>> Sponsor Thank Yous! We gratefully recognize our SciPy >>>>>>>>>>>>>> conference sponsors, whose contributions ensure the accessibility of the >>>>>>>>>>>>>> conference and growth of the important work being done by the scientific >>>>>>>>>>>>>> Python community. >>>>>>>>>>>>>> >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=www.kitware.com> >>>>>>>>>>>>>> >>>>>>>>>>>>>> *This week's sponsor highlight is silver sponsor, Kitware:* >>>>>>>>>>>>>> * Kitware, Inc. is a leader in the creation and support of >>>>>>>>>>>>>> open-source software and state of the art technology. By fostering >>>>>>>>>>>>>> extended, collaborative communities, Kitware is able to provide flexible, >>>>>>>>>>>>>> cost-effective visualization, computer vision, medical imaging, data >>>>>>>>>>>>>> publishing, and quality software process solutions to a variety of academic >>>>>>>>>>>>>> and government institutions and private corporations worldwide.* >>>>>>>>>>>>>> >>>>>>>>>>>>>> ------------------------------ >>>>>>>>>>>>>> Know a company that might want to sponsor SciPy 2015 or >>>>>>>>>>>>>> provide scholarship funding? Share the sponsorship prospectus >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org/ehome/115969/259285/?&> >>>>>>>>>>>>>> -------------------------------------- >>>>>>>>>>>>>> To unsubscribe from this mailing list, please click here >>>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/profile.php?id=BctbGJi3EKrTogVy7ttdnrT0TTsw6Zr%2FRzGhBzBXaDM%3D> >>>>>>>>>>>>>> >>>>>>>>>>>>>> >>>>>>>>>>>>>> ------------------------------------------------------------ >>>>>>>>>>>>>> ------------------ >>>>>>>>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>>>>>>>> Website, sponsored >>>>>>>>>>>>>> by Intel and developed in partnership with Slashdot Media, is >>>>>>>>>>>>>> your hub for all >>>>>>>>>>>>>> things parallel software development, from weekly thought >>>>>>>>>>>>>> leadership blogs to >>>>>>>>>>>>>> news, videos, case studies, tutorials and more. Take a look >>>>>>>>>>>>>> and join the >>>>>>>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>>>>>>> _______________________________________________ >>>>>>>>>>>>>> Matplotlib-devel mailing list >>>>>>>>>>>>>> Mat...@li... >>>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>>>>>>> >>>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>> ------------------------------------------------------------ >>>>>>>>>>>>> ------------------ >>>>>>>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>>>>>>> Website, sponsored >>>>>>>>>>>>> by Intel and developed in partnership with Slashdot Media, is >>>>>>>>>>>>> your hub for all >>>>>>>>>>>>> things parallel software development, from weekly thought >>>>>>>>>>>>> leadership blogs to >>>>>>>>>>>>> news, videos, case studies, tutorials and more. Take a look >>>>>>>>>>>>> and join the >>>>>>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>>>>>> _______________________________________________ >>>>>>>>>>>>> Matplotlib-devel mailing list >>>>>>>>>>>>> Mat...@li... >>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>> ------------------------------------------------------------ >>>>>>>>>>>> ------------------ >>>>>>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>>>>>> Website, sponsored >>>>>>>>>>>> by Intel and developed in partnership with Slashdot Media, is >>>>>>>>>>>> your hub for all >>>>>>>>>>>> things parallel software development, from weekly thought >>>>>>>>>>>> leadership blogs to >>>>>>>>>>>> news, videos, case studies, tutorials and more. Take a look and >>>>>>>>>>>> join the >>>>>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>>>>> _______________________________________________ >>>>>>>>>>>> Matplotlib-devel mailing list >>>>>>>>>>>> Mat...@li... >>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>>>>> >>>>>>>>>>> ------------------------------------------------------------ >>>>>>>>>>> ------------------ >>>>>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>>>>> Website, sponsored >>>>>>>>>>> by Intel and developed in partnership with Slashdot Media, is >>>>>>>>>>> your hub for all >>>>>>>>>>> things parallel software development, from weekly thought >>>>>>>>>>> leadership blogs to >>>>>>>>>>> news, videos, case studies, tutorials and more. Take a look and >>>>>>>>>>> join the >>>>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>>>> _______________________________________________ >>>>>>>>>>> Matplotlib-devel mailing list >>>>>>>>>>> Mat...@li... >>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> ------------------------------------------------------------------------------ >>>>>>>>>> Dive into the World of Parallel Programming The Go Parallel Website, sponsored >>>>>>>>>> by Intel and developed in partnership with Slashdot Media, is your hub for all >>>>>>>>>> things parallel software development, from weekly thought leadership blogs to >>>>>>>>>> news, videos, case studies, tutorials and more. Take a look and join the >>>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> _______________________________________________ >>>>>>>>>> Matplotlib-devel mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> ------------------------------------------------------------ >>>>>>>>>> ------------------ >>>>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>>>> Website, sponsored >>>>>>>>>> by Intel and developed in partnership with Slashdot Media, is >>>>>>>>>> your hub for all >>>>>>>>>> things parallel software development, from weekly thought >>>>>>>>>> leadership blogs to >>>>>>>>>> news, videos, case studies, tutorials and more. Take a look and >>>>>>>>>> join the >>>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>>> _______________________________________________ >>>>>>>>>> Matplotlib-devel mailing list >>>>>>>>>> Mat...@li... >>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>>> >>>>>>>>> >>>>>>>>> ------------------------------------------------------------ >>>>>>>>> ------------------ >>>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>>> Website, sponsored >>>>>>>>> by Intel and developed in partnership with Slashdot Media, is your >>>>>>>>> hub for all >>>>>>>>> things parallel software development, from weekly thought >>>>>>>>> leadership blogs to >>>>>>>>> news, videos, case studies, tutorials and more. Take a look and >>>>>>>>> join the >>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>> _______________________________________________ >>>>>>>>> Matplotlib-devel mailing list >>>>>>>>> Mat...@li... >>>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>> >>>>>>>>> >>>>>>>> >>>>>> >>>>> >>>>> ------------------------------------------------------------ >>>>> ------------------ >>>>> Dive into the World of Parallel Programming The Go Parallel Website, >>>>> sponsored >>>>> by Intel and developed in partnership with Slashdot Media, is your hub >>>>> for all >>>>> things parallel software development, from weekly thought leadership >>>>> blogs to >>>>> news, videos, case studies, tutorials and more. Take a look and join >>>>> the >>>>> conversation now. http://goparallel.sourceforge.net/ >>>>> _______________________________________________ >>>>> Matplotlib-devel mailing list >>>>> Mat...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>> >>>>> >>>> ------------------------------------------------------------ >>>> ------------------ >>>> Dive into the World of Parallel Programming The Go Parallel Website, >>>> sponsored >>>> by Intel and developed in partnership with Slashdot Media, is your hub >>>> for all >>>> things parallel software development, from weekly thought leadership >>>> blogs to >>>> news, videos, case studies, tutorials and more. Take a look and join the >>>> conversation now. http://goparallel.sourceforge.net/ >>>> _______________________________________________ >>>> Matplotlib-devel mailing list >>>> Mat...@li... >>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>> >>> > |
From: Joe K. <jof...@gm...> - 2015-06-24 01:42:28
|
Absolutely! Assuming Ben's okay with it, I think we could definitely use the help! Cheers, -Joe On Mon, Jun 22, 2015 at 5:58 AM, Jens Nielsen <jen...@gm...> wrote: > Hi Ben and Joe, > > I will be there for the tutorials doing the shell part of software > carpentry but I am available to help you with the matplotlib tutorial if > you can use any additional help > > > Jens > > > > > tir. 31. mar. 2015 kl. 17.07 skrev Jens Nielsen <jen...@gm...>: > >> Hi >> >> I am expecting to be at Scipy but I have already volunteered to help out >> with the Software carpentry tutorials. >> I have the impression that they might have more helpers than needed in >> which case I would be happy to help with the Matplotlib tutorials. >> >> Jens >> >> >> >> tir. 31. mar. 2015 kl. 16.45 skrev Benjamin Root <ben...@ou...>: >> >>> Joe, it would be great to have you as a co-presenter. >>> >>> Nelle, I am guessing I should contact Krystyn to update my proposal to >>> include Joe? >>> >>> Ben >>> >>> On Mon, Mar 30, 2015 at 8:45 PM, Joe Kington <jof...@gm...> >>> wrote: >>> >>>> High praise, coming from you guys. Thanks! :) >>>> -Joe >>>> >>>> On Mon, Mar 30, 2015 at 6:53 PM, Paul Hobson <pmh...@gm...> >>>> wrote: >>>> >>>>> Joe, >>>>> >>>>> You should introduce yourself as "that guy who did that paw detection >>>>> post that saved that one guy's research". >>>>> -P >>>>> >>>>> — >>>>> Sent from Mailbox <https://www.dropbox.com/mailbox> >>>>> >>>>> >>>>> On Mon, Mar 30, 2015 at 4:52 PM, Thomas Caswell <tca...@gm...> >>>>> wrote: >>>>> >>>>>> +1 from me. I suspect many people got their start learning mpl from >>>>>> you on SO ;) >>>>>> >>>>>> Tom >>>>>> >>>>>> On Mon, Mar 30, 2015 at 7:17 PM Joe Kington <jof...@gm...> >>>>>> wrote: >>>>>> >>>>>>> If you don't mind a "non-core" person doing the tutorial, I'll be >>>>>>> there this year, and I'd be happy to be Ben's backup for teaching it. >>>>>>> Cheers! >>>>>>> -Joe >>>>>>> >>>>>>> On Sun, Mar 29, 2015 at 9:17 PM, Thomas Caswell <tca...@gm...> >>>>>>> wrote: >>>>>>> >>>>>>>> Ben, >>>>>>>> >>>>>>>> Have you sorted out if you can make scipy this year and does anyone >>>>>>>> want to be back up on teaching the tutorial? >>>>>>>> >>>>>>>> It seems a shame to not have a mpl tutorial available. >>>>>>>> >>>>>>>> I am probably going to submit a 'state of the library' talk and do >>>>>>>> not want to do both. >>>>>>>> >>>>>>>> Tom >>>>>>>> >>>>>>>> On Thu, Mar 26, 2015 at 5:06 PM Michael Droettboom <md...@st...> >>>>>>>> wrote: >>>>>>>> >>>>>>>>> This sounds great. Unfortunately, I can't attend Scipy this year >>>>>>>>> due to a family commitment, but would be more than happy to help put >>>>>>>>> together and review materials beforehand. >>>>>>>>> >>>>>>>>> Cheers, >>>>>>>>> Mike >>>>>>>>> >>>>>>>>> >>>>>>>>> On 03/26/2015 10:59 AM, Thomas Caswell wrote: >>>>>>>>> >>>>>>>>> >>>>>>>>> I also think we should have a 'state of the library' talk. >>>>>>>>> >>>>>>>>> We definitely have a few important things to announce/show off: >>>>>>>>> - FSA >>>>>>>>> - nbagg/notebook >>>>>>>>> - new default colors >>>>>>>>> - style module >>>>>>>>> >>>>>>>>> and should have a couple more by July >>>>>>>>> - sane serialize/deserialize + interop with plotly/bokeh >>>>>>>>> - better toolbar >>>>>>>>> - better interactive OO >>>>>>>>> - improved docs >>>>>>>>> >>>>>>>>> I will be there for the main conference and the sprints and am >>>>>>>>> willing to give this talk, but will defer if someone else wants to do it. >>>>>>>>> >>>>>>>>> Does anyone want to volunteer to be Ben's second on his tutorial? >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> On Fri, Mar 13, 2015 at 2:46 PM Olga Botvinnik <obo...@uc...> >>>>>>>>> wrote: >>>>>>>>> >>>>>>>>>> I'd be very interested in hearing a "state of matplotlib" talk. >>>>>>>>>> >>>>>>>>>> On Fri, Mar 13, 2015, 11:29 Phil Elson <pel...@gm...> >>>>>>>>>> wrote: >>>>>>>>>> >>>>>>>>>>> Orchestrating MPL tutorials and talks in this thread would be a >>>>>>>>>>> good idea. I'd be happy to help anybody planning on submitting anything >>>>>>>>>>> relating specifically to matplotlib, and wonder if we should do a "state of >>>>>>>>>>> matplotlib" type talk similar to the one Mike did 2 years ago. >>>>>>>>>>> >>>>>>>>>>> On 13 March 2015 at 02:05, Benjamin Root <ben...@ou...> >>>>>>>>>>> wrote: >>>>>>>>>>> >>>>>>>>>>>> Yes, I plan to submit my time-honored, and requested "Anatomy >>>>>>>>>>>> of Matplotlib" tutorial. Now, I am not entirely sure I will be able to >>>>>>>>>>>> attend the conference this year, so perhaps someone else might be willing >>>>>>>>>>>> to step in and give it this year? >>>>>>>>>>>> >>>>>>>>>>>> Note that my tutorial is geared for beginners. So there is >>>>>>>>>>>> still plenty of opportunity for someone else to submit a tutorial for more >>>>>>>>>>>> advanced users! >>>>>>>>>>>> >>>>>>>>>>>> Cheers! >>>>>>>>>>>> Ben Root >>>>>>>>>>>> >>>>>>>>>>>> On Thu, Mar 12, 2015 at 6:46 PM, Nelle Varoquaux < >>>>>>>>>>>> nel...@gm...> wrote: >>>>>>>>>>>> >>>>>>>>>>>>> Hi everyone, >>>>>>>>>>>>> >>>>>>>>>>>>> Is someone submitting a tutorial on matplotlib? The call for >>>>>>>>>>>>> tutorial is open, and I think it would be nice to have one on matplotlib. >>>>>>>>>>>>> >>>>>>>>>>>>> Cheers, >>>>>>>>>>>>> N >>>>>>>>>>>>> >>>>>>>>>>>>> ---------- Forwarded message ---------- >>>>>>>>>>>>> From: SciPy 2015 Organizers <sci...@sc...> >>>>>>>>>>>>> Date: 11 March 2015 at 01:02 >>>>>>>>>>>>> Subject: SciPy 2015 CFP Email 2 >>>>>>>>>>>>> To: nel...@gm... >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>> [image: SciPy 2015 Logo] >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org/ehome/index.php%7CQ%7Ceventid%7CE%7C115969%7CA%7C> >>>>>>>>>>>>> >>>>>>>>>>>>> Tick-Tock, Tick-Tock: >>>>>>>>>>>>> T-Minus 6 Days for Tutorial Submissions >>>>>>>>>>>>> *Due Date: March 16, 2015* >>>>>>>>>>>>> >>>>>>>>>>>>> The SciPy experience kicks off with two days of tutorials >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org/ehome/115969/259288/%7CQ%7C> >>>>>>>>>>>>> (July 6-7). These sessions provide extremely affordable access to expert >>>>>>>>>>>>> training, and consistently receive fantastic feedback from participants. >>>>>>>>>>>>> We're looking for submissions on topics from introductory to advanced - >>>>>>>>>>>>> we'll have attendees across the gamut looking to learn. Plus, you can earn >>>>>>>>>>>>> an instructor stipend to apply towards your conference participation. Visit >>>>>>>>>>>>> the SciPy 2015 website for details >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org> >>>>>>>>>>>>> or submit a proposal here >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.scipy2015.scipy.org/eselectv2/frontend/index/115969> >>>>>>>>>>>>> . >>>>>>>>>>>>> >>>>>>>>>>>>> Submit a Tutorial Proposal Here >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.scipy2015.scipy.org/eselectv2/frontend/index/115969> Talk >>>>>>>>>>>>> and Poster Proposals Due April 1st >>>>>>>>>>>>> >>>>>>>>>>>>> There's always something new and exciting going on in the >>>>>>>>>>>>> world of Science + Python, this is your chance to get up and talk about it! >>>>>>>>>>>>> >>>>>>>>>>>>> *Visit the SciPy 2015 website >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org/ehome/index.php%7CQ%7Ceventid%7CE%7C115969%7CA%7C> >>>>>>>>>>>>> for full details or click here to submit a proposal >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.scipy2015.scipy.org/eselectv2/frontend/index/115969>.* >>>>>>>>>>>>> Choose a topic in one of the 3 main conference tracks: >>>>>>>>>>>>> >>>>>>>>>>>>> - Scientific Computing in Python (General track) >>>>>>>>>>>>> - Python in Data Science >>>>>>>>>>>>> - Quantitative and Computational Social Sciences >>>>>>>>>>>>> >>>>>>>>>>>>> * And/or submit for one of the 7 domain-specific mini-symposia >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.scipy2015.scipy.org/eselectv2/frontend/index/115969>:* >>>>>>>>>>>>> >>>>>>>>>>>>> - Astronomy and astrophysics >>>>>>>>>>>>> - Computational life and medical sciences >>>>>>>>>>>>> - Engineering >>>>>>>>>>>>> - Geographic information systems (GIS) >>>>>>>>>>>>> - Geophysics >>>>>>>>>>>>> - Oceanography and meteorology >>>>>>>>>>>>> - Visualization, vision and imaging >>>>>>>>>>>>> >>>>>>>>>>>>> Submit a Talk or Poster Proposal Here >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.scipy2015.scipy.org/eselectv2/frontend/index/115969> Need >>>>>>>>>>>>> some inspiration? Follow @SciPy on Twitter >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=https://twitter.com/scipyconf> >>>>>>>>>>>>> for highlights from previous SciPy conferences and all of the latest 2015 >>>>>>>>>>>>> updates. >>>>>>>>>>>>> >>>>>>>>>>>>> - Previous year's conferences with talk information >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://conference.scipy.org/past.html> >>>>>>>>>>>>> - SciPy 2014 Talk & Tutorial Video playlist >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.youtube.com/playlist%7CQ%7Clist%7CE%7CPLYx7XA2nY5GfuhCvStxgbynFNrxr3VFog> >>>>>>>>>>>>> - SciPy 2013 Talk & Tutorial Video playlist >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://www.youtube.com/playlist%7CQ%7Clist%7CE%7CPLYx7XA2nY5GeTWcUQTbXVdllyp-Ie3r-y> >>>>>>>>>>>>> >>>>>>>>>>>>> Financial Scholarship Applications Now Being Accepted >>>>>>>>>>>>> >>>>>>>>>>>>> With the support of our sponsors, the SciPy conference >>>>>>>>>>>>> provides financial assistance to attendees based on both community >>>>>>>>>>>>> contribution and financial need. >>>>>>>>>>>>> >>>>>>>>>>>>> In 2014 we were able to support 19 applicants, including 5 >>>>>>>>>>>>> diversity aid recipients, selected for their outstanding contributions to >>>>>>>>>>>>> open source scientific Python projects. *If you'd like to be >>>>>>>>>>>>> considered for financial scholarship, please apply here >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org/ehome/115969/259279/?&> >>>>>>>>>>>>> before April 15, 2015.* >>>>>>>>>>>>> Sponsor Thank Yous! We gratefully recognize our SciPy >>>>>>>>>>>>> conference sponsors, whose contributions ensure the accessibility of the >>>>>>>>>>>>> conference and growth of the important work being done by the scientific >>>>>>>>>>>>> Python community. >>>>>>>>>>>>> >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=www.kitware.com> >>>>>>>>>>>>> >>>>>>>>>>>>> *This week's sponsor highlight is silver sponsor, Kitware:* >>>>>>>>>>>>> * Kitware, Inc. is a leader in the creation and support of >>>>>>>>>>>>> open-source software and state of the art technology. By fostering >>>>>>>>>>>>> extended, collaborative communities, Kitware is able to provide flexible, >>>>>>>>>>>>> cost-effective visualization, computer vision, medical imaging, data >>>>>>>>>>>>> publishing, and quality software process solutions to a variety of academic >>>>>>>>>>>>> and government institutions and private corporations worldwide.* >>>>>>>>>>>>> >>>>>>>>>>>>> ------------------------------ >>>>>>>>>>>>> Know a company that might want to sponsor SciPy 2015 or >>>>>>>>>>>>> provide scholarship funding? Share the sponsorship prospectus >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/go.php?i=182077&e=bmVsbGUudmFyb3F1YXV4QGdtYWlsLmNvbQ==&l=http://scipy2015.scipy.org/ehome/115969/259285/?&> >>>>>>>>>>>>> -------------------------------------- >>>>>>>>>>>>> To unsubscribe from this mailing list, please click here >>>>>>>>>>>>> <https://www.eiseverywhere.com/emarketing/profile.php?id=BctbGJi3EKrTogVy7ttdnrT0TTsw6Zr%2FRzGhBzBXaDM%3D> >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>> ------------------------------------------------------------ >>>>>>>>>>>>> ------------------ >>>>>>>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>>>>>>> Website, sponsored >>>>>>>>>>>>> by Intel and developed in partnership with Slashdot Media, is >>>>>>>>>>>>> your hub for all >>>>>>>>>>>>> things parallel software development, from weekly thought >>>>>>>>>>>>> leadership blogs to >>>>>>>>>>>>> news, videos, case studies, tutorials and more. Take a look >>>>>>>>>>>>> and join the >>>>>>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>>>>>> _______________________________________________ >>>>>>>>>>>>> Matplotlib-devel mailing list >>>>>>>>>>>>> Mat...@li... >>>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>> >>>>>>>>>>>> ------------------------------------------------------------ >>>>>>>>>>>> ------------------ >>>>>>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>>>>>> Website, sponsored >>>>>>>>>>>> by Intel and developed in partnership with Slashdot Media, is >>>>>>>>>>>> your hub for all >>>>>>>>>>>> things parallel software development, from weekly thought >>>>>>>>>>>> leadership blogs to >>>>>>>>>>>> news, videos, case studies, tutorials and more. Take a look and >>>>>>>>>>>> join the >>>>>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>>>>> _______________________________________________ >>>>>>>>>>>> Matplotlib-devel mailing list >>>>>>>>>>>> Mat...@li... >>>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>>>>> >>>>>>>>>>>> >>>>>>>>>>> ------------------------------------------------------------ >>>>>>>>>>> ------------------ >>>>>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>>>>> Website, sponsored >>>>>>>>>>> by Intel and developed in partnership with Slashdot Media, is >>>>>>>>>>> your hub for all >>>>>>>>>>> things parallel software development, from weekly thought >>>>>>>>>>> leadership blogs to >>>>>>>>>>> news, videos, case studies, tutorials and more. Take a look and >>>>>>>>>>> join the >>>>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>>>> _______________________________________________ >>>>>>>>>>> Matplotlib-devel mailing list >>>>>>>>>>> Mat...@li... >>>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>>>> >>>>>>>>>> ------------------------------------------------------------ >>>>>>>>>> ------------------ >>>>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>>>> Website, sponsored >>>>>>>>>> by Intel and developed in partnership with Slashdot Media, is >>>>>>>>>> your hub for all >>>>>>>>>> things parallel software development, from weekly thought >>>>>>>>>> leadership blogs to >>>>>>>>>> news, videos, case studies, tutorials and more. Take a look and >>>>>>>>>> join the >>>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>>> _______________________________________________ >>>>>>>>>> Matplotlib-devel mailing list >>>>>>>>>> Mat...@li... >>>>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> ------------------------------------------------------------------------------ >>>>>>>>> Dive into the World of Parallel Programming The Go Parallel Website, sponsored >>>>>>>>> by Intel and developed in partnership with Slashdot Media, is your hub for all >>>>>>>>> things parallel software development, from weekly thought leadership blogs to >>>>>>>>> news, videos, case studies, tutorials and more. Take a look and join the >>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> _______________________________________________ >>>>>>>>> Matplotlib-devel mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>> >>>>>>>>> >>>>>>>>> ------------------------------------------------------------ >>>>>>>>> ------------------ >>>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>>> Website, sponsored >>>>>>>>> by Intel and developed in partnership with Slashdot Media, is your >>>>>>>>> hub for all >>>>>>>>> things parallel software development, from weekly thought >>>>>>>>> leadership blogs to >>>>>>>>> news, videos, case studies, tutorials and more. Take a look and >>>>>>>>> join the >>>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>>> _______________________________________________ >>>>>>>>> Matplotlib-devel mailing list >>>>>>>>> Mat...@li... >>>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>>> >>>>>>>> >>>>>>>> ------------------------------------------------------------ >>>>>>>> ------------------ >>>>>>>> Dive into the World of Parallel Programming The Go Parallel >>>>>>>> Website, sponsored >>>>>>>> by Intel and developed in partnership with Slashdot Media, is your >>>>>>>> hub for all >>>>>>>> things parallel software development, from weekly thought >>>>>>>> leadership blogs to >>>>>>>> news, videos, case studies, tutorials and more. Take a look and >>>>>>>> join the >>>>>>>> conversation now. http://goparallel.sourceforge.net/ >>>>>>>> _______________________________________________ >>>>>>>> Matplotlib-devel mailing list >>>>>>>> Mat...@li... >>>>>>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>>>>>> >>>>>>>> >>>>>>> >>>>> >>>> >>>> ------------------------------------------------------------ >>>> ------------------ >>>> Dive into the World of Parallel Programming The Go Parallel Website, >>>> sponsored >>>> by Intel and developed in partnership with Slashdot Media, is your hub >>>> for all >>>> things parallel software development, from weekly thought leadership >>>> blogs to >>>> news, videos, case studies, tutorials and more. Take a look and join the >>>> conversation now. http://goparallel.sourceforge.net/ >>>> _______________________________________________ >>>> Matplotlib-devel mailing list >>>> Mat...@li... >>>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>>> >>>> >>> ------------------------------------------------------------ >>> ------------------ >>> Dive into the World of Parallel Programming The Go Parallel Website, >>> sponsored >>> by Intel and developed in partnership with Slashdot Media, is your hub >>> for all >>> things parallel software development, from weekly thought leadership >>> blogs to >>> news, videos, case studies, tutorials and more. Take a look and join the >>> conversation now. http://goparallel.sourceforge.net/ >>> _______________________________________________ >>> Matplotlib-devel mailing list >>> Mat...@li... >>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >>> >> |
From: Brian G. <ell...@gm...> - 2015-06-22 19:04:21
|
I will be around and would love to participate. On Mon, Jun 22, 2015 at 5:39 AM, Thomas Caswell <tca...@gm...> wrote: > Who will be around for the sprints? We should start to come up with a list > what we want to work on. There are a number of issues tagged as > 'hack-a-thon' which are good candidates for novice contributors. > > A few major projects that need attention are: > > - sorting out how to reliably find freetype everywhere (we should probably > pull in someone from enthought on this if possible as they are one of the > problem cases). This might be solved by using pkg-config everywhere? > - through review of MEP27 and the extension of MEP22 to the rest of the > interactive backends > - discussions with IPython folks about what rolling traitlets into Artist > would look like > > Tom > > ------------------------------------------------------------------------------ > Monitor 25 network devices or servers for free with OpManager! > OpManager is web-based network management software that monitors > network devices and physical & virtual servers, alerts via email & sms > for fault. Monitor 25 devices for free with no restriction. Download now > http://ad.doubleclick.net/ddm/clk/292181274;119417398;o > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > -- Brian E. Granger Cal Poly State University, San Luis Obispo @ellisonbg on Twitter and GitHub bgr...@ca... and ell...@gm... |
From: Benjamin R. <ben...@ou...> - 2015-06-22 14:41:19
|
I think the 2.0 one is what I had in mind. Thanks for clearing that up. Cheers! Ben Root On Mon, Jun 22, 2015 at 10:34 AM, Kyle Mandli <kyl...@co...> wrote: > There are two matplotlib related BoFs submitted (and scheduled) right > now. One is titled “matplotlib 2.0” and the other “visualization”. > Hopefully this is what you had in mind, if not let us know and we can > schedule another BoF. > > Kyle > > > > On Jun 22, 2015, at 10:28 AM, Benjamin Root <ben...@ou...> wrote: > > > > I was thinking that we would have another BoF similar to last year's > that solicited feedback and questions from users. I guess I figured someone > else already filed that BoF. I am guessing that didn't happen? > > > > Ben Root > > > > On Sat, Jun 6, 2015 at 10:39 AM, Kyle Mandli <kyl...@co...> > wrote: > > Members of the matplotlib community, > > > > As one of the co-chairs in charge of organizing the birds-of-a-feather > sessions at SciPy this year I wanted to reach out to your community to > encourage you to submit a BoF proposal to open up a discussion on topics > related to matplotlib development, future or just general questions. > Please let us know if there is anything we can help with in terms of > organization. > > > > Kyle Mandli and Matt McCormick > > > > > ------------------------------------------------------------------------------ > > _______________________________________________ > > Matplotlib-devel mailing list > > Mat...@li... > > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > > > > |
From: Kyle M. <kyl...@co...> - 2015-06-22 14:34:11
|
There are two matplotlib related BoFs submitted (and scheduled) right now. One is titled “matplotlib 2.0” and the other “visualization”. Hopefully this is what you had in mind, if not let us know and we can schedule another BoF. Kyle > On Jun 22, 2015, at 10:28 AM, Benjamin Root <ben...@ou...> wrote: > > I was thinking that we would have another BoF similar to last year's that solicited feedback and questions from users. I guess I figured someone else already filed that BoF. I am guessing that didn't happen? > > Ben Root > > On Sat, Jun 6, 2015 at 10:39 AM, Kyle Mandli <kyl...@co...> wrote: > Members of the matplotlib community, > > As one of the co-chairs in charge of organizing the birds-of-a-feather sessions at SciPy this year I wanted to reach out to your community to encourage you to submit a BoF proposal to open up a discussion on topics related to matplotlib development, future or just general questions. Please let us know if there is anything we can help with in terms of organization. > > Kyle Mandli and Matt McCormick > > ------------------------------------------------------------------------------ > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: Benjamin R. <ben...@ou...> - 2015-06-22 14:29:16
|
I was thinking that we would have another BoF similar to last year's that solicited feedback and questions from users. I guess I figured someone else already filed that BoF. I am guessing that didn't happen? Ben Root On Sat, Jun 6, 2015 at 10:39 AM, Kyle Mandli <kyl...@co...> wrote: > Members of the matplotlib community, > > As one of the co-chairs in charge of organizing the birds-of-a-feather > sessions at SciPy this year I wanted to reach out to your community to > encourage you to submit a BoF proposal to open up a discussion on topics > related to matplotlib development, future or just general questions. > Please let us know if there is anything we can help with in terms of > organization. > > Kyle Mandli and Matt McCormick > > > ------------------------------------------------------------------------------ > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: Benjamin R. <ben...@ou...> - 2015-06-22 13:32:24
|
I will be there for Saturday and a little bit on Sunday. Ben Root On Mon, Jun 22, 2015 at 9:21 AM, Jens Nielsen <jen...@gm...> wrote: > Hi Tom > > I will be there for the sprints and keen to work on Matplotlib stuff. > > - I have a reasonable understanding of what needs to happen on Mac to fix > the freetype issue. I just haven't had the time to do it yet so I will be > happy to participate in that work. > - :+1: For work on MEP27/22 and traitlets > - What's the status of your coveralls branch. > https://github.com/matplotlib/matplotlib/pull/4367 adding additional > tests would IMHO be a suitable task for intermediate new contributors. > - MEP 12 http://matplotlib.org/devdocs/devel/MEP/MEP12.html should be > reasonably assessable to novice new comers and hopefully more fun now that > the docs are rebuild automatically on merge > > > Best Jens > > > > > > man. 22. jun. 2015 kl. 13.40 skrev Thomas Caswell <tca...@gm...>: > >> Who will be around for the sprints? We should start to come up with a >> list what we want to work on. There are a number of issues tagged as >> 'hack-a-thon' which are good candidates for novice contributors. >> >> A few major projects that need attention are: >> >> - sorting out how to reliably find freetype everywhere (we should >> probably pull in someone from enthought on this if possible as they are one >> of the problem cases). This might be solved by using pkg-config everywhere? >> - through review of MEP27 and the extension of MEP22 to the rest of the >> interactive backends >> - discussions with IPython folks about what rolling traitlets into >> Artist would look like >> >> Tom >> >> ------------------------------------------------------------------------------ >> Monitor 25 network devices or servers for free with OpManager! >> OpManager is web-based network management software that monitors >> network devices and physical & virtual servers, alerts via email & sms >> for fault. Monitor 25 devices for free with no restriction. Download now >> http://ad.doubleclick.net/ddm/clk/292181274;119417398;o >> _______________________________________________ >> Matplotlib-devel mailing list >> Mat...@li... >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel >> > > > ------------------------------------------------------------------------------ > Monitor 25 network devices or servers for free with OpManager! > OpManager is web-based network management software that monitors > network devices and physical & virtual servers, alerts via email & sms > for fault. Monitor 25 devices for free with no restriction. Download now > http://ad.doubleclick.net/ddm/clk/292181274;119417398;o > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > > |
From: Jens N. <jen...@gm...> - 2015-06-22 13:21:46
|
Hi Tom I will be there for the sprints and keen to work on Matplotlib stuff. - I have a reasonable understanding of what needs to happen on Mac to fix the freetype issue. I just haven't had the time to do it yet so I will be happy to participate in that work. - :+1: For work on MEP27/22 and traitlets - What's the status of your coveralls branch. https://github.com/matplotlib/matplotlib/pull/4367 adding additional tests would IMHO be a suitable task for intermediate new contributors. - MEP 12 http://matplotlib.org/devdocs/devel/MEP/MEP12.html should be reasonably assessable to novice new comers and hopefully more fun now that the docs are rebuild automatically on merge Best Jens man. 22. jun. 2015 kl. 13.40 skrev Thomas Caswell <tca...@gm...>: > Who will be around for the sprints? We should start to come up with a > list what we want to work on. There are a number of issues tagged as > 'hack-a-thon' which are good candidates for novice contributors. > > A few major projects that need attention are: > > - sorting out how to reliably find freetype everywhere (we should > probably pull in someone from enthought on this if possible as they are one > of the problem cases). This might be solved by using pkg-config everywhere? > - through review of MEP27 and the extension of MEP22 to the rest of the > interactive backends > - discussions with IPython folks about what rolling traitlets into Artist > would look like > > Tom > > ------------------------------------------------------------------------------ > Monitor 25 network devices or servers for free with OpManager! > OpManager is web-based network management software that monitors > network devices and physical & virtual servers, alerts via email & sms > for fault. Monitor 25 devices for free with no restriction. Download now > http://ad.doubleclick.net/ddm/clk/292181274;119417398;o > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel > |
From: Thomas C. <tca...@gm...> - 2015-06-22 12:40:04
|
Who will be around for the sprints? We should start to come up with a list what we want to work on. There are a number of issues tagged as 'hack-a-thon' which are good candidates for novice contributors. A few major projects that need attention are: - sorting out how to reliably find freetype everywhere (we should probably pull in someone from enthought on this if possible as they are one of the problem cases). This might be solved by using pkg-config everywhere? - through review of MEP27 and the extension of MEP22 to the rest of the interactive backends - discussions with IPython folks about what rolling traitlets into Artist would look like Tom |