File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
src/main/scala/algoliasearch/abtesting Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -29,13 +29,11 @@ package algoliasearch.abtesting
2929 * @param durationDays
3030 * Estimated number of days needed to reach the sample sizes required for detecting the configured effect. This value
3131 * is based on historical traffic.
32- * @param controlSampleSize
33- * Number of tracked searches needed to be able to detect the configured effect for the control variant.
34- * @param experimentSampleSize
35- * Number of tracked searches needed to be able to detect the configured effect for the experiment variant.
32+ * @param sampleSizes
33+ * Sample size estimates for each variant. The first element is the control variant. Each element is the estimated
34+ * number of searches required to achieve the desired statistical significance.
3635 */
3736case class EstimateABTestResponse (
3837 durationDays : Option [Long ] = scala.None ,
39- controlSampleSize : Option [Long ] = scala.None ,
40- experimentSampleSize : Option [Long ] = scala.None
38+ sampleSizes : Option [Seq [Long ]] = scala.None
4139)
You can’t perform that action at this time.
0 commit comments