View source: R/sd_outliersLearn.R
sd_outliersLearn | R Documentation |
Calculates the standard deviation of the input data given the mean.
sd_outliersLearn(data, mean)
data |
Input Data that will be used to calculate the standard deviation. Must be a vector |
mean |
Mean of the input data vector of the function. |
Standard Deviation of the input data
Andres Missiego Manjon
inputData = c(1,2,3,4,5,6,1);
mean = sum(inputData)/length(inputData);
sd = sd_outliersLearn(inputData, mean);
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.