stat-min
Input Stack: |
⇨ | Output Stack:
|
Filter helper that represents the minimum statistic of the input time series. This is a
placeholder that gets automatically replaced with min,:stat
when used with :filter.
It allows filtering based on the minimum value of each time series without having to duplicate
the input expression.
Examples¶
Filtering series by minimum value range:
Before | After |
name,sps,:eq, (,nf.cluster,),:by | name,sps,:eq, (,nf.cluster,),:by, :stat-min, 5e3,:gt, :stat-min, 20e3,:lt, :and, :filter |
This filters to show only time series where the minimum value is between 5,000 and 20,000.