2016-07-06 18:41 GMT+02:00 Antoine Pitrou <[email protected]>: > I'm not sure this is meant to implement my suggestion from the other > thread,
Yes, I implemented this after the discussion we had in the other thread. > but if so, there is a misunderstanding: I did not suggest to > remove the samples outside of the range [median - 5%; median + 5%]. I > suggested to remove the 5% smallest and the 5% largest samples. I tried something to remove outliers. I didn't try to implement what you suggested. 5% smallest/5% largest: do you mean something like sorting all samples, remove items from the two tails? Something like sorted(samples)[3:-3] ? Victor _______________________________________________ Speed mailing list [email protected] https://mail.python.org/mailman/listinfo/speed
