series_stats()

Learn how to use the series_stats() function to calculate the statistics for a numerical series using multiple columns.

Returns statistics for a numerical series in a table with a column for each statistic.

Syntax

... | extend ( Name,) = series_stats ( series [, ignore_nonfinite] )

Parameters

NameTypeRequiredDescription
NamestringThe column labels for the output table. If not provided, the system will generate them. If you provide a limited number of names, the table will show only those columns.
seriesdynamic✔️An array of numeric values.
ignore_nonfiniteboolDetermines if the calculation includes non-finite values like null, NaN, inf, and so on. The default is false, which will result in null if non-finite values are present.

Returns

A table with a column for each of the statistics displayed in the following table.

StatisticDescription
minThe minimum value in the input array.
min_idxThe first position of the minimum value in the input array.
maxThe maximum value in the input array.
max_idxThe first position of the maximum value in the input array.
avgThe average value of the input array.
varianceThe sample variance of input array.
stdevThe sample standard deviation of the input array.

Example

print x=dynamic([23, 46, 23, 87, 4, 8, 3, 75, 2, 56, 13, 75, 32, 16, 29]) 
| project series_stats(x)

Output

series_stats_x_minseries_stats_x_min_idxseries_stats_x_maxseries_stats_x_max_idxseries_stats_x_avgseries_stats_x_stdevseries_stats_x_variance
2887332.828.5036338535483812.457142857143