Re: [Speed] perf 0.6 released
On Wed, 6 Jul 2016 18:17:49 +0200 Victor Stinner <victor.stinner@gmail.com> wrote:
The list of runs now highlight outliers by showing the percent for samples out of the range [median - 5%; median + 5%]. Example: "raw samples (5): 208 ms (+76%)".
I'm not sure this is meant to implement my suggestion from 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.
Regards
Antoine.
2016-07-06 18:41 GMT+02:00 Antoine Pitrou <solipsis@pitrou.net>:
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
participants (2)
-
Antoine Pitrou
-
Victor Stinner