Skip to main content

window_avg

Knowledge Checkpoint

Readings that will help you understand this documentation better:

Definition

A window aggregation function that returns the average of rows in a range relative to the current row.

Syntax

window_avg(agg_expr)
window_avg(agg_expr, order: order_expr, ...)
window_avg(agg_expr, range, order: order_expr, ...)
window_avg(agg_expr, range, order: order_expr, ..., reset: partition_expr, ...)
window_avg(agg_expr, range, order: order_expr, ..., partition: partition_expr, ...)
Examples
window_avg(count(users.id))
window_avg(count(users.id), order: count(users.id) | desc())
window_avg(count(users.id), -2..2, order: users.created_at | month())
window_avg(count(users.id), order: users.created_at | month(), reset: users.gender)

Input

  • agg_expr (required): An aggregation expression to be averaged.
  • range (optional): A range of rows to include in the average. Negative values indicate rows before the current row, and positive values indicate rows after the current row, while 0 indicates the current row. If the beginning or end of the range is not specified, the range will include all rows from the beginning or end of the table. By default, if the range is not specified:
    • If order is specified, the range is ..0 (from the first row to the current row).
    • If order is not specified, the range is .. (from the first row to the last row).
  • order (required, repeatable): A field that is used for ordering. The order is default to ascending. The order can be set explicitly with asc() or desc().
    danger

    If the specified order does not uniquely identify rows, the result of the function can be non-deterministic. For example, if you use order: users.age, and there are multiple users with the same age in the same partition, the result can be unexpected.

  • partition or reset (repeatable, optional): A field that is used for partitioning the table. If partitions are not specified:
    • If order is specified, the table will be partitioned by all other grouping columns.
    • If order is not specified, the table will be considered as a single partition.

Output

The average of the current row and the rows within the specified range.

Sample Usages

Avg of Count
explore {
dimensions {
users.gender,
orders.status
}
measures {
count(orders.id),
_avg: window_avg(count(orders.id), ..)
}
}

The most common use case for window_avg is to calculate the average of a column. In this example, we calculate the average of the count of users.


Avg of Count with Moving Average
explore {
dimensions {
orders.created_at | year()
}
measures {
count(orders.id),
moving_avg: window_avg(count(orders.id), -2..2, order: orders.created_at | year())
}
}

We can also use it to calculate the moving average of a column. In this example, we calculate the moving average of the count of users, ordered by the year they were created. Notice that we are using the range parameter to specify the range of rows to include in the average. In this case, we are calculating the average of the current row and the two rows before and after it (i.e. a total of 5 rows) with the range -2..2.


Let us know what you think about this document :)