Check¶
Perform data quality check that accompanies metric evaluation in the experiment.
See Data Quality Checks for details about
data quality checks and Evaluation
for description of output.
Source code in src/epstats/toolkit/check.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
|
evaluate_agg(goals, default_exp_variant_id)
¶
Evaluate this check from pre-aggregated goals.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
goals |
DataFrame
|
one row per experiment variant |
required |
default_exp_variant_id |
str
|
default variant |
required |
See Experiment.evaluate_agg
for details
on goals
at input.
Returns:
Type | Description |
---|---|
DataFrame
|
|
checks
dataframe with columns:
timestamp
- timestamp of evaluationexp_id
- experiment idcheck_id
- check id as inExperiment
definitionvariable_id
- name of the variable in check evaluation, SRM check has following variablesp_value
,test_stat
,confidence_level
value
- value of the variable
Source code in src/epstats/toolkit/check.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
|
evaluate_by_unit(goals, default_exp_variant_id)
¶
Evaluate this check from goals aggregated by unit.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
goals |
DataFrame
|
ne row per experiment variant |
required |
default_exp_variant_id |
str
|
default variant |
required |
See Experiment.evaluate_by_unit
for details
on goals
at input.
Returns:
Type | Description |
---|---|
DataFrame
|
|
checks
dataframe with columns:
timestamp
- timestamp of evaluationexp_id
- experiment idcheck_id
- check id as inExperiment
definitionvariable_id
- name of the variable in check evaluation, SRM check has following variablesp_value
,test_stat
,confidence_level
value
- value of the variable
Source code in src/epstats/toolkit/check.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
|
get_goals()
¶
List of all goals needed to evaluate the check in the experiment.
Returns:
Type | Description |
---|---|
List
|
list of parsed structured goals |
Source code in src/epstats/toolkit/check.py
25 26 27 28 29 30 31 32 |
|
SRM Check¶
Bases: Check
Sample ratio mismatch check checking randomization of units to variants using Chi-square test.
Source code in src/epstats/toolkit/check.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
|
__init__(id, name, denominator, confidence_level=0.999, **unused_kwargs)
¶
Constructor of the SRM check.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
int
|
check (order) id |
required |
name |
str
|
check name |
required |
denominator |
str
|
values to check |
required |
confidence_level |
float
|
confidence level of the statistical test |
0.999
|
Usage:
SrmCheck(1, 'SRM', 'count(test_unit_type.global.exposure)')
Source code in src/epstats/toolkit/check.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
evaluate_agg(goals, default_exp_variant_id)
¶
See Check.evaluate_agg
.
Source code in src/epstats/toolkit/check.py
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
|
evaluate_by_unit(goals, default_exp_variant_id)
¶
Source code in src/epstats/toolkit/check.py
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
|
Simple SRM Check¶
Bases: SrmCheck
Simplified definition of SRM check.
Source code in src/epstats/toolkit/check.py
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
__init__(id, name, denominator, confidence_level=0.999, unit_type='test_unit_type')
¶
Constructor of the simplified SRM check.
It modifies parameter denominator in a way that it is in line with general SRM Check definition. It adds all the niceties necessary for proper SrmCheck format. Finaly it calls constructor of the parent SrmCheck class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
int
|
check (order) id |
required |
name |
str
|
check name |
required |
denominator |
str
|
value (column) of the denominator |
required |
confidence_level |
float
|
confidence level of the statistical test |
0.999
|
unit_type |
str
|
unit type |
'test_unit_type'
|
Usage:
SimpleSrmCheck(1, 'SRM', 'exposures')
Source code in src/epstats/toolkit/check.py
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
SumRatio Check¶
Bases: Check
Computes the ratio of nominator
, denominator
goal counts summed across all variants.
Source code in src/epstats/toolkit/check.py
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
|
__init__(id, name, nominator, denominator, max_sum_ratio=0.01, confidence_level=0.999, **unused_kwargs)
¶
Constructor of the check.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
int
|
check (order) id |
required |
name |
str
|
check name |
required |
nominator |
str
|
goal in the ratio numerator |
required |
denominator |
str
|
goal in the ratio denominitaor |
required |
max_sum_ratio |
float
|
maximum allowed sum_ratio value |
0.01
|
confidence_level |
float
|
confidence level of the statistical test |
0.999
|
Usage:
SumRatioCheck(
1,
"SumRatio",
"count(test_unit_type.global.inconsistent_exposure)",
"count(test_unit_type.global.exposure)"
)
Source code in src/epstats/toolkit/check.py
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
|
evaluate_agg(goals, default_exp_variant_id)
¶
See Check.evaluate_agg
.
Source code in src/epstats/toolkit/check.py
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
|