Mean-func
Returns the average of a vector.
Mean function calculates average by column. If you want to calculate the average of multiple datasets by row, you can use syntax sum(vd) to sum datasets by row and generate temporary datasets of related statistics values, and then use _mean to get the meanu value. See the sum() function for more information.
sum(vd)
_mean
double Mean(dataset vd)
vd
Returns the average of specified argument.
double aa=mean(col(A)); aa=; //Should return the average value of the specified column.
Median,Min,Max,Total