Max-func
This function returns the maximum value from a set of values. This function can take up to 10 arguments.
double Max(dataset vd)
vd
Return the maximum value from a set of values.
dd=max(col(A)); dd=; // Should return the maximum value of column(A).
y = max(1, 2, 3, 4, 5, 6); y=; //Should return the maximum value of the dataset y.
Min, Mean, Total