Ave-func
The ave function breaks dataset into groups of size size, finds the average for each group, and returns a range containing these values.
dataset ave(dataset vd, int size[, int stats])
vd
size
stats
Returns a dataset.
//group every 5 points in column A and return average of each group to column B col(B) = ave(col(A),5); //return the maximum by week col("Weekly") = ave(col("Days"),7,5); //group every 100 points in 2nd column and return SD of each group to 3rd column col(2) = int(65 + 35 * uniform(5000)); col(3) = ave(col(2),100,2);
Sum (function), Sum (object)