@@ -222,55 +222,55 @@ export enum Statistic {
222
222
*
223
223
* wm10 calculates the average while treating the 90% of the highest values to be equal to the value at the 10th percentile.
224
224
*/
225
- wm10 = 'wm10' ,
225
+ WM10 = 'wm10' ,
226
226
/**
227
227
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
228
228
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
229
229
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
230
230
*
231
231
* wm50 calculates the average while treating the 50% of the highest values to be equal to the value at the 50th percentile.
232
232
*/
233
- wm50 = 'wm50' ,
233
+ WM50 = 'wm50' ,
234
234
/**
235
235
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
236
236
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
237
237
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
238
238
*
239
239
* wm90 calculates the average while treating the 10% of the highest values to be equal to the value at the 90th percentile.
240
240
*/
241
- wm90 = 'wm90' ,
241
+ WM90 = 'wm90' ,
242
242
/**
243
243
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
244
244
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
245
245
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
246
246
*
247
247
* wm95 calculates the average while treating the 5% of the highest values to be equal to the value at the 95th percentile.
248
248
*/
249
- wm95 = 'wm95' ,
249
+ WM95 = 'wm95' ,
250
250
/**
251
251
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
252
252
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
253
253
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
254
254
*
255
255
* wm99 calculates the average while treating the 1% of the highest values to be equal to the value at the 99th percentile.
256
256
*/
257
- wm99 = 'wm99' ,
257
+ WM99 = 'wm99' ,
258
258
/**
259
259
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
260
260
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
261
261
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
262
262
*
263
263
* wm99.9 calculates the average while treating the 0.1% of the highest values to be equal to the value at the 99.9th percentile.
264
264
*/
265
- wm99_9 = 'wm99.9' ,
265
+ WM99_9 = 'wm99.9' ,
266
266
/**
267
267
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
268
268
* but instead are considered to be equal to the value at the edge of the appropriate boundary.
269
269
* After this normalization, the average is calculated. You define the boundaries as one or two numbers between 0 and 100, up to 10 decimal places.
270
270
*
271
271
* wm99.99 calculates the average while treating the 0.01% of the highest values to be equal to the value at the 99.99th percentile.
272
272
*/
273
- wm99_99 = 'wm99.99' ,
273
+ WM99_99 = 'wm99.99' ,
274
274
275
275
/**
276
276
* Winsorized mean (WM) is similar to trimmed mean. However, with winsorized mean, the values that are outside the boundary are not ignored,
0 commit comments