StdDev-func
Calculate the sample Standard Deviation.
StdDev function calculates SD by column. If you want to calculate SD 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 _sd to get SD value. See the sum() function for more information.
double StdDev(dataset vd)
vd
Return the Sample Standard Deviation.
double ee=StdDev(col(A)); ee=;
StdDevP