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:

[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