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 e31b637 commit 1cb016cCopy full SHA for 1cb016c
algoliasearch/abtesting/models/currency.py
@@ -23,6 +23,7 @@
23
"revenue": "revenue",
24
"mean": "mean",
25
"standard_deviation": "standardDeviation",
26
+ "winsorized_amount": "winsorizedAmount",
27
}
28
29
@@ -43,6 +44,8 @@ class Currency(BaseModel):
43
44
""" Mean for this currency. """
45
standard_deviation: Optional[float] = None
46
""" Standard deviation for this currency. """
47
+ winsorized_amount: Optional[float] = None
48
+ """ The amount of revenue for this currency that was removed after capping purchase amounts to the 95th percentile. """
49
50
model_config = ConfigDict(
51
strict=False,
0 commit comments