2023-01-29
with a 28 day lookback period and 7 day seasonality will contain the all the data points at the timestamps 2023-01-01
, 2023-01-08
, 2023-01-15
, and 2023-01-22
.
The dimension values can be encoded in two ways: enumeration or linear buckets.
targetProperty | description |
---|---|
currentData | A data frame with columns ts , dim , and met . Missing data is ok, and the time index filler is not recommended. Column ts is the timestamp. Column dim is the dimension to used to measure drift. Column met is the metric or population of the dimension value at the timestamp. |
outputName | description |
---|---|
driftScoreData | The resulting data frame of drift metrics. The data frame has columns ts and met . Column ts is the timestamp. Column met is the drift score computed at the timestamp. |
name | description |
---|---|
monitoringGranularity | The time granularity of the output timeseries. |
seasonalityPeriod | The step-size used when building the baseline dataset |
lookback | The period of time to consider points for the baseline dataset. |
encoder | The encoder parameters json object. |
name | description |
---|---|
type | The type of encoder. One of ENUMERATION or LINEAR_BUCKETS . |
linearBucket | The linear bucket parameters json object. |
name | description |
---|---|
bucketStart | The value corresponding to the first bucket. |
bucketSize | The size of each bucket. |
bucketCount | The number of buckets to use. |