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