content/flux/v0/stdlib/internal/promql/holtwinters.md
promql.holtWinters() implements functionality equivalent to
PromQL's holt_winters() function.
Important: The internal/promql package is not meant for external use.
(
<-tables: stream[{A with _value: float, _time: time}],
?smoothingFactor: float,
?trendFactor: float,
) => stream[{B with _value: float}]
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
Input data. Default is piped-forward data (<-).
Exponential smoothing factor.
Trend factor.