Gabriely Xavier
unread,Aug 2, 2022, 9:27:53 AM8/2/22Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Chrome UX Report (Discussions), rvis...@google.com, Chrome UX Report (Discussions), Gabriely Xavier
Hi!!
thanks for the explanations
but taking this same example,
as the histogram bins considers the range like this [start, end), if end<=0.1 or start<0.1, ie [0,0.1), still exclude the 0.1 from the small range and include it in the medium range.
I see that the way to get this right would be to change the limits of the histogram bins, ie (start, end], and then start<0.1 or end<=0.1 would be including 0.1 in the small range, as the documentation says.
for example, if histogram bins :=
(start, end]small: start<0.1 or end <=0.1 := (0, 0.1] (0.1 belongs to the small level)
medium: start>=0.1 and start <0.25 (0.1, 0.25]
slow: start>=0.25 or end>0.25 := (0.25, inf] (0.25 does not belong to the slow level)
or maybe change the documentation to be small<0.1 and slow >=0.25