sd_outliersLearn {OutliersLearn}R Documentation

sd_outliersLearn

Description

Calculates the standard deviation of the input data given the mean.

Usage

sd_outliersLearn(data, mean)

Arguments

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.

Value

Standard Deviation of the input data

Author(s)

Andres Missiego Manjon

Examples

inputData = c(1,2,3,4,5,6,1);
mean = sum(inputData)/length(inputData);
sd = sd_outliersLearn(inputData, mean);


[Package OutliersLearn version 1.0.0 Index]