We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebae89a commit 4a0523cCopy full SHA for 4a0523c
src/main/scala/algoliasearch/abtesting/Currency.scala
@@ -34,10 +34,13 @@ package algoliasearch.abtesting
34
* Mean for this currency.
35
* @param standardDeviation
36
* Standard deviation for this currency.
37
+ * @param winsorizedAmount
38
+ * The amount of revenue for this currency that was removed after capping purchase amounts to the 95th percentile.
39
*/
40
case class Currency(
41
currency: Option[String] = scala.None,
42
revenue: Option[Double] = scala.None,
43
mean: Option[Double] = scala.None,
- standardDeviation: Option[Double] = scala.None
44
+ standardDeviation: Option[Double] = scala.None,
45
+ winsorizedAmount: Option[Double] = scala.None
46
)
0 commit comments