Top | Previous | Next |
Aggregates / mean |
mean(dataset, column OR number, number...) Calculates the mean (a.k.a average) for the numbers in the given column of the given dataset or the mean of a series of numbers specified as arguments. When looking up the mean in a dataset, the column may be specified as an index or as a column name. Any null values in the column are ignored. If there are no rows in the dataset, zero is returned.
For example, suppose you had a table with this dataset in it:
mean({Root Container.Table.data}, "Weight") ... would return 5.58675
mean(1,2,3) ... would return 2 |