powered by
Calculates the standard deviation of the input data given the mean.
sd_outliersLearn(data, mean)
Standard Deviation of the input data
Input Data that will be used to calculate the standard deviation. Must be a vector
Mean of the input data vector of the function.
Andres Missiego Manjon
inputData = c(1,2,3,4,5,6,1); mean = sum(inputData)/length(inputData); sd = sd_outliersLearn(inputData, mean);
Run the code above in your browser using DataLab