Min-func
This function is used to returns the minimum value from a set of values. This function can take up to 10 arguments.
Mim function calculates minimum value by column. If you want to calculate minimum of multiple datasets by row, you can use syntax sum(vd) to sum dataset by row and generate temporary datasets of related statistics values, and then use _min to get the minimum. See the sum() function for more information.
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