WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
143552
The results of A/B testing should state statistical significance
https://bugs.webkit.org/show_bug.cgi?id=143552
Summary
The results of A/B testing should state statistical significance
Ryosuke Niwa
Reported
2015-04-08 20:42:55 PDT
When A/B testing completes, we should report whether differences are statistically significant or not.
Attachments
Adds the feature
(12.05 KB, patch)
2015-04-08 20:59 PDT
,
Ryosuke Niwa
cdumez
: review+
Details
Formatted Diff
Diff
Screenshot 1 (statistically significant)
(64.91 KB, image/png)
2015-04-08 21:05 PDT
,
Ryosuke Niwa
no flags
Details
Screenshot 2 (statistically insignificant)
(54.92 KB, image/png)
2015-04-08 21:05 PDT
,
Ryosuke Niwa
no flags
Details
View All
Add attachment
proposed patch, testcase, etc.
Ryosuke Niwa
Comment 1
2015-04-08 20:59:18 PDT
Created
attachment 250410
[details]
Adds the feature
Ryosuke Niwa
Comment 2
2015-04-08 21:05:09 PDT
Created
attachment 250411
[details]
Screenshot 1 (statistically significant)
Ryosuke Niwa
Comment 3
2015-04-08 21:05:24 PDT
Created
attachment 250412
[details]
Screenshot 2 (statistically insignificant)
Chris Dumez
Comment 4
2015-04-08 21:15:02 PDT
Comment on
attachment 250410
[details]
Adds the feature View in context:
https://bugs.webkit.org/attachment.cgi?id=250410&action=review
rs=me
> Websites/perf.webkit.org/public/v2/app.js:1339 > + for (var i = 0; i < configurations.length; i++) {
Looks like we only need to go up to configurations.length-1 ?
> Websites/perf.webkit.org/public/v2/app.js:1341 > + var summary1 = configurations[i].summary;
should probably be outside this for loop as it doesn't change.
> Websites/perf.webkit.org/public/v2/app.js:1362 > + return 'Not statistically significant' + details;
missing space after "significant".
> Websites/perf.webkit.org/public/v2/js/statistics.js:67 > + return [null, null];
In the regular case you return a dict but here you are returning an array?
Ryosuke Niwa
Comment 5
2015-04-08 21:58:35 PDT
Comment on
attachment 250410
[details]
Adds the feature View in context:
https://bugs.webkit.org/attachment.cgi?id=250410&action=review
Thanks for the review & nice bug catches!
>> Websites/perf.webkit.org/public/v2/app.js:1339 >> + for (var i = 0; i < configurations.length; i++) { > > Looks like we only need to go up to configurations.length-1 ?
Oops, nice catch!
>> Websites/perf.webkit.org/public/v2/app.js:1341 >> + var summary1 = configurations[i].summary; > > should probably be outside this for loop as it doesn't change.
Fixed.
>> Websites/perf.webkit.org/public/v2/app.js:1362 >> + return 'Not statistically significant' + details; > > missing space after "significant".
Oh, there is a leading space in "details".
>> Websites/perf.webkit.org/public/v2/js/statistics.js:67 >> + return [null, null]; > > In the regular case you return a dict but here you are returning an array?
Oops, fixed.
Ryosuke Niwa
Comment 6
2015-04-08 21:59:12 PDT
Committed
r182587
: <
http://trac.webkit.org/changeset/182587
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug