[Tutor] R: Tutor Digest, Vol 125, Issue 71

2014-07-23 Thread jarod...@libero.it
Thanks so much!! >Messaggio originale >Da: tutor-requ...@python.org >Data: 23/07/2014 8.10 >A: >Ogg: Tutor Digest, Vol 125, Issue 71 > >Send Tutor mailing list submissions to > tutor@python.org > >To subscribe or unsubscribe via the World Wide Web, visit > https://mail.python.

Re: [Tutor] (no subject)

2014-07-23 Thread Wolfgang Maier
On 07/23/2014 03:36 AM, LN A-go-go wrote: Hi again and thank-you Wolfgang and company. I wish I could give you snickers bars or something! I was able to get through the road_blocks with your help. I have been working the last few days, I am sorry to say, unsuccessfully, to calculate the mean (

[Tutor] binning data and calculating means of classes

2014-07-23 Thread Wolfgang Maier
On 07/23/2014 03:36 AM, LN A-go-go wrote: > > with your help. I have been working the last few days, I am sorry to > say, unsuccessfully, to calculate the mean (that's easy), split the data > into sub-groups or secondary means - which are the break values between > 4 classes. Create data-sets wi

Re: [Tutor] binning data and calculating means of classes

2014-07-23 Thread Wolfgang Maier
On 07/23/2014 11:28 AM, Wolfgang Maier wrote: breakpoints = [your_list_of breakpoints] large_value_buffer = [] int_list_iter = iter(int_list) # see comment below for breakpoint in breakpoints: sublist = large_value_buffer for value in int_list_iter: if value < breakpoint:

Re: [Tutor] Getting a directory listing with Python to MySQL

2014-07-23 Thread Danny Yoo
On Jul 22, 2014 11:10 PM, "Eric Dannewitz" wrote: > > That's close. I have been playing from glob and os.walk but I'm at a loss how to get the size, creation and modified date while running it. Steven mentioned a few functions in his reply; check those ones out. The 'os' module is a bit large, b

Re: [Tutor] Using module Facebook

2014-07-23 Thread Chris
On 07/20/2014 09:48 PM, Albert-Jan Roskam wrote: > Hi, just wondering: why are you cloning the repo? You pip install > from Pypi. You can also pip install from the repo. I didn't know that this is possible directly. -- Christian ___ Tutor maillist -