Moving average
Last updated
Was this helpful?
Last updated
Was this helpful?
This Moving average step smooths out short-term fluctuations in your data by calculating averages over a specified window of time or number of rows. It's particularly helpful for identifying trends in time-series data.
Value column
column(string): the value column used as the basis for the moving average computation
Reference column to sort (usually dates)
column(string): the column used to sort rows
Moving window (in number of rows)
int*: the number of rows included in the moving window
Group by
(optional): if you want perform the computation by group of rows (see example 2 below)
New column name
(optional): if you want to specify a custom column name (by default, it will be your original value column name suffixed with _MOVING_AVG
)
Input
Configuration
Output