- v
a vector
- max_order
the maximum order of the centered moment to be computed.
- na_rm
whether to remove NA, false by default.
- wts
an optional vector of weights. Weights are ‘replication’
weights, meaning a value of 2 is shorthand for having two observations
with the corresponding v
value. If NULL
, corresponds to
equal unit weights, the default. Note that weights are typically only meaningfully defined
up to a multiplicative constant, meaning the units of weights are
immaterial, with the exception that methods which check for minimum df will,
in the weighted case, check against the sum of weights. For this reason,
weights less than 1 could cause NA
to be returned unexpectedly due
to the minimum condition. When weights are NA
, the same rules for checking v
are applied. That is, the observation will not contribute to the moment
if the weight is NA
when na_rm
is true. When there is no
checking, an NA
value will cause the output to be NA
.
- check_wts
a boolean for whether the code shall check for negative
weights, and throw an error when they are found. Default false for speed.
- normalize_wts
a boolean for whether the weights should be
renormalized to have a mean value of 1. This mean is computed over elements
which contribute to the moments, so if na_rm
is set, that means non-NA
elements of wts
that correspond to non-NA elements of the data
vector.
- ret1
an \(ord+1\) vector as output by cent_sums
consisting of
the count, the mean, then the k through ordth centered sum of some observations.
- ret2
an \(ord+1\) vector as output by cent_sums
consisting of
the count, the mean, then the k through ordth centered sum of some observations.
- ret3
an \(ord+1\) vector as output by cent_sums
consisting of
the count, the mean, then the k through ordth centered sum of some observations.