Learn R Programming

distr6 (version 1.3.1)

kthmoment: Kth Moment

Description

Kth standardised or central moment of a distribution

Usage

kthmoment(object, k, type = "central")

Arguments

object

Distribution.

k

the kth moment to calculate

type

one of 'central', 'standard' or 'raw', abbreviations allowed

Value

If univariate, the given k-moment as a numeric, otherwise NULL.

R6 Usage

$kthmoment(k, type = "central")

Details

The kth central moment of a distribution is defined by $$CM(k)_X = E_X[(x - \mu)^k]$$ the kth standardised moment of a distribution is defined by $$SM(k)_X = \frac{CM(k)}{\sigma^k}$$ the kth raw moment of a distribution is defined by $$RM(k)_X = E_X[x^k]$$ where \(E_X\) is the expectation of distribution X, \(\mu\) is the mean of the distribution and \(\sigma\) is the standard deviation of the distribution.

Abbreviations for the type are allowed but if an unfamiliar input is given then the central moment is computed.

Can only be used after decorating with CoreStatistics.

See Also

CoreStatistics and decorate