fBasics (version 4032.96)

normRobMoments: Robust moments for the Normal distribution

Description

Computes the first four robust moments for the Normal distribution.

Usage

normMED(mean = 0, sd = 1)
normIQR(mean = 0, sd = 1)
normSKEW(mean = 0, sd = 1)
normKURT(mean = 0, sd = 1)

Value

a named numerical value. The name is one of MED, IQR,

SKEW, or KURT, obtained by dropping the gh prefix from the name of the corresponding function.

Arguments

mean

locaiton parameter.

sd

scale parameter.

Author

Diethelm Wuertz

Examples

Run this code
## normMED -
   # Median:
   normMED(mean = 0, sd = 1)

## normIQR -
   # Inter-quartile Range:
   normIQR(mean = 0, sd = 1)

## normSKEW -
   # Robust Skewness:
   normSKEW(mean = 0, sd = 1)

## normKURT -
   # Robust Kurtosis:
   normKURT(mean = 0, sd = 1)

Run the code above in your browser using DataLab