skew.ratio: Skewness Ratio

Description Usage Arguments Details Value See Also Examples

View source: R/skew.ratio.R

Description

Returns the ratio of a distribution's skewness value to its standard error of skewness.

Usage

1

Arguments

x

numeric object containing the values for a variable.

Details

skew.ratio relies on the functions skew and se.skew to compute the skewness value and standard error of skewness, respectively.

Value

Skewness ratio of x.

See Also

skew, se.skew

Examples

1
2
3
# skew ratio computed two ways
skew.ratio(NELS$achmat12)
skew(NELS$achmat12) / se.skew(NELS$achmat12)

Example output

[1] -3.864545
[1] -3.864545

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

Related to skew.ratio in sur...