windowCount
The windowCount
function calculates the count of the aggregated measure or dimension in a
custom window that is partitioned and sorted by specified attributes. Usually, you use
custom window functions on a time series, where your visual shows a metric and a date
field.
Window functions aren't supported for MySQL versions earlier than 8 and MariaDB versions earlier than 10.2.
Syntax
The brackets are required. To see which arguments are optional, see the following descriptions.
windowCount (
measure_or_dimension
,[sort_order_field ASC/DESC, ...]
,start_index
,end_index
,[ partition_field, ... ]
)
Arguments
- measure or dimension
-
The aggregated metric that you want to get the average for, for example
sum({Revenue})
. - sort attribute
-
One or more aggregated fields, either measures or dimensions or both, that you want to sort the data by, separated by commas. You can either specify ascending (
ASC
) or descending (DESC
) sort order.Each field in the list is enclosed in {} (curly braces), if it's more than one word. The entire list is enclosed in [ ] (square brackets).
- start index
-
The start index is a positive integer, indicating n rows above the current row. The start index counts the available data points above the current row, rather than counting actual time periods. If your data is sparse (missing months or years, for example), adjust the indexes accordingly.
- end index
-
The end index is a positive integer, indicating n rows below the current row. The end index counts the available data points below the current row, rather than counting actual time periods. If your data is sparse (missing months or years, for example), adjust the indexes accordingly.
- partition field
-
(Optional) One or more dimensions that you want to partition by, separated by commas.
Each field in the list is enclosed in {} (curly braces), if it's more than one word. The entire list is enclosed in [ ] (square brackets).
Example
The following example calculates the moving count of sum(Revenue)
,
partitioned by SaleDate
. The calculation includes three rows above and two
row below of the current row.
windowCount ( sum(Revenue), [SaleDate ASC], 3, 2 )