From jreback at yahoo.com Thu Apr 3 18:23:53 2014 From: jreback at yahoo.com (Jeff Reback) Date: Thu, 3 Apr 2014 09:23:53 -0700 (PDT) Subject: [Pandas-dev] pandas release schedule Message-ID: <1396542233.92956.YahooMailNeo@web142706.mail.bf1.yahoo.com> Hey, Thinking that would be nice to release 0.14.0 in mid-late May, depending on how much of the SQL stuff needs to go in. Then 0.14.1 if necessary maybe 1 month later. Any thoughts? ?Jeff -------------- next part -------------- An HTML attachment was scrubbed... URL: From jorisvandenbossche at gmail.com Fri Apr 4 14:33:37 2014 From: jorisvandenbossche at gmail.com (Joris Van den Bossche) Date: Fri, 4 Apr 2014 14:33:37 +0200 Subject: [Pandas-dev] pandas release schedule In-Reply-To: <1396542233.92956.YahooMailNeo@web142706.mail.bf1.yahoo.com> References: <1396542233.92956.YahooMailNeo@web142706.mail.bf1.yahoo.com> Message-ID: Sounds good to me. - Do we also target an earlier date to get a RC out? Or set a target date after which only bug fixes / doc improvements go in? - Are there things we would really want to get in? (and so should get some focus at the moment) - certainly the SQL still needs some work (#6296) - other PR/issues? Regards, Joris 2014-04-03 18:23 GMT+02:00 Jeff Reback : > Hey, > > Thinking that would be nice to release 0.14.0 in mid-late May, depending > on how > much of the SQL stuff needs to go in. > > Then 0.14.1 if necessary maybe 1 month later. > > Any thoughts? > > > > Jeff > > _______________________________________________ > Pandas-dev mailing list > Pandas-dev at python.org > https://mail.python.org/mailman/listinfo/pandas-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jreback at yahoo.com Tue Apr 8 23:29:12 2014 From: jreback at yahoo.com (Jeff Reback) Date: Tue, 8 Apr 2014 17:29:12 -0400 Subject: [Pandas-dev] pandas release schedule In-Reply-To: References: <1396542233.92956.YahooMailNeo@web142706.mail.bf1.yahoo.com> Message-ID: <8A5BBE2F-3AED-4133-B25E-9417C357D329@yahoo.com> I think sending out a RC say 1st week of May is prob reasonable. So let's see what can get done in sql space by then. When you are satisfied with the sql progress, just move anything in the sql issues to the 0.15 issue. can then target a release a week or so after that. if anyone wants to try to get anything else in but needs time speak up! Jeff > On Apr 4, 2014, at 8:33 AM, Joris Van den Bossche wrote: > > Sounds good to me. > > - Do we also target an earlier date to get a RC out? Or set a target date after which only bug fixes / doc improvements go in? > > - Are there things we would really want to get in? (and so should get some focus at the moment) > - certainly the SQL still needs some work (#6296) > - other PR/issues? > > > Regards, > Joris > > > > > 2014-04-03 18:23 GMT+02:00 Jeff Reback : >> Hey, >> >> Thinking that would be nice to release 0.14.0 in mid-late May, depending on how >> much of the SQL stuff needs to go in. >> >> Then 0.14.1 if necessary maybe 1 month later. >> >> Any thoughts? >> >> >> >> Jeff >> >> _______________________________________________ >> Pandas-dev mailing list >> Pandas-dev at python.org >> https://mail.python.org/mailman/listinfo/pandas-dev > -------------- next part -------------- An HTML attachment was scrubbed... URL: From cpcloud at gmail.com Wed Apr 9 23:03:19 2014 From: cpcloud at gmail.com (Phillip Cloud) Date: Wed, 9 Apr 2014 17:03:19 -0400 Subject: [Pandas-dev] Free interactive tutorials for Pandas In-Reply-To: References: Message-ID: Perfect timing Tobias. I've convinced my coworkers that Python with pandas is the way to go for data analysis (they use MATLAB currently), but of course there are a TON of things that pandas does and I can't hope to teach it all to them. I would say that the most important thing to understand when first learning pandas is its indexing rules and capabilities. For me, this was one of the harder things to learn and one of the most useful, once I was able to grok it. Understanding the semantics of loc and iloc is essential to being productive with pandas (and these aren't in The Book). Anyway, I think this is a great idea. -- Best, Phillip Cloud On Sun, Mar 2, 2014 at 10:55 AM, Tobias Knuth wrote: > Hello everyone, > > a friend of mine and I use Python a lot for work and for fun. We also love > Wes McKinney's book about Pandas, which proved as a great help learning it. > > Unfortunately, there are no interactive tutorials like those that are > available at Code School or codecademy for other languages and libraries. > Even learnpython.org is "just" about Python itself, not about Pandas. > > So we decided to do it. We got the technology to implement interactive > open source tutorials for Pandas as a web app. > > *I'm writing this mail to ask whether there is something similar in the > making and whether you'd like to tell your thoughts about it. Is there > anything that you would like to see? Any feature requests or possible > caveats?* > > We'll use an interactive Python interpreter, simulate some functions and > plot everything in the browser using D3. At least, that's the plan. It'll > be a long-term project as this seems quite complex. > > Looking forward to hearing your thoughts :-) > > Best wishes, > Tobias Knuth > > _______________________________________________ > Pandas-dev mailing list > Pandas-dev at python.org > https://mail.python.org/mailman/listinfo/pandas-dev > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mail at tobiasknuth.de Tue Apr 15 13:53:25 2014 From: mail at tobiasknuth.de (Tobias Knuth) Date: Tue, 15 Apr 2014 13:53:25 +0200 Subject: [Pandas-dev] Free interactive tutorials for Pandas In-Reply-To: References: Message-ID: Thanks to all of you for the hints what we could cover. We'll start by building the architecture. Especially security is an important topic to us as arbitrary code will be executed. When having done this, we'll start covering the contents. I'll send you an update when we make significant progress. Best wishes, Tobias 2014-04-09 23:03 GMT+02:00 Phillip Cloud : > Perfect timing Tobias. I've convinced my coworkers that Python with pandas > is the way to go for data analysis (they use MATLAB currently), but of > course there are a TON of things that pandas does and I can't hope to teach > it all to them. I would say that the most important thing to understand > when first learning pandas is its indexing rules and capabilities. For me, > this was one of the harder things to learn and one of the most useful, once > I was able to grok it. Understanding the semantics of loc and iloc is > essential to being productive with pandas (and these aren't in The Book). > Anyway, I think this is a great idea. > > > -- > Best, > Phillip Cloud > > > On Sun, Mar 2, 2014 at 10:55 AM, Tobias Knuth wrote: > >> Hello everyone, >> >> a friend of mine and I use Python a lot for work and for fun. We also >> love Wes McKinney's book about Pandas, which proved as a great help >> learning it. >> >> Unfortunately, there are no interactive tutorials like those that are >> available at Code School or codecademy for other languages and libraries. >> Even learnpython.org is "just" about Python itself, not about Pandas. >> >> So we decided to do it. We got the technology to implement interactive >> open source tutorials for Pandas as a web app. >> >> *I'm writing this mail to ask whether there is something similar in the >> making and whether you'd like to tell your thoughts about it. Is there >> anything that you would like to see? Any feature requests or possible >> caveats?* >> >> We'll use an interactive Python interpreter, simulate some functions and >> plot everything in the browser using D3. At least, that's the plan. It'll >> be a long-term project as this seems quite complex. >> >> Looking forward to hearing your thoughts :-) >> >> Best wishes, >> Tobias Knuth >> >> _______________________________________________ >> Pandas-dev mailing list >> Pandas-dev at python.org >> https://mail.python.org/mailman/listinfo/pandas-dev >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: