se.skew: Standard Error of Skewness

Description Usage Arguments Details Value See Also Examples

View source: R/se.skew.R

Description

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

Usage

1

Arguments

x

numeric object containing the values for a variable.

Details

Standard error of skewness is computed on non-missing values using the following equation.

√( 6*N*(N-1) / ((N-2)*(N+1)*(N+3)) )

Value

Standard error of skewness for x.

See Also

skew, skew.ratio

Examples

1
2
se.skew(Temp$Temperature[Temp$City == "Springfield"])
se.skew(Temp$Temperature[Temp$City == "SanFrancisco"])

Example output

[1] 0.637302
[1] 0.637302

sur documentation built on Aug. 26, 2020, 1:06 a.m.

Related to se.skew in sur...