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)
vd
size
Returns a dataset.
groupave_B = ave(Book1_B,5); col(Weekly) = ave(col(Days),7); col(2) = int(65 + 35 * uniform(5000)); range raGross = [Scores]"Section 5"!"Applied Mathematics"; range raSummary = [Summary]"Section 5"!"One Hundred"; raSummary = ave(raGross,100);
Sum (function), Sum (object)