sur (version 1.0.0)

se.skew: Standard Error of Skewness

Description

Function to obtain the standard error of the skewness of a distribution of values.

Usage

se.skew(x)

Arguments

x

numeric object containing the values for a variable.

Value

Standard error of skewness for x.

Details

Standard error of skewness is computed on non-missing values using the following equation. $$\sqrt( 6*N*(N-1) / ((N-2)*(N+1)*(N+3)) )$$

See Also

skew, skew.ratio

Examples

Run this code
# NOT RUN {
se.skew(Temp$Temperature[Temp$City == "Springfield"])
se.skew(Temp$Temperature[Temp$City == "SanFrancisco"])
# }

Run the code above in your browser using DataCamp Workspace