PostHog · Schema
IQRDetectorConfig
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| multiplier | number | IQR multiplier for fence calculation (default: 1.5, use 3.0 for far outliers) |
| preprocessing | object | Preprocessing transforms applied before detection |
| type | string | |
| window | integer | Rolling window size for calculating quartiles (default: 30) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IQRDetectorConfig",
"title": "IQRDetectorConfig",
"additionalProperties": false,
"properties": {
"multiplier": {
"default": null,
"description": "IQR multiplier for fence calculation (default: 1.5, use 3.0 for far outliers)",
"title": "Multiplier",
"type": "number",
"nullable": true
},
"preprocessing": {
"default": null,
"description": "Preprocessing transforms applied before detection",
"allOf": [
{
"$ref": "#/components/schemas/PreprocessingConfig"
}
],
"nullable": true
},
"type": {
"default": "iqr",
"title": "Type",
"type": "string",
"enum": [
"iqr"
]
},
"window": {
"default": null,
"description": "Rolling window size for calculating quartiles (default: 30)",
"title": "Window",
"type": "integer",
"nullable": true
}
},
"type": "object"
}