second_central_moment | R Documentation |
Measures the skewness (a measure of the asymmetry of the probability distribution) and the kurtosis (measure of the "tailedness" of the probability distribution). Standardized versions are the skewness and kurtosis normalized by the mean resultant length, Mardia 1972).
second_central_moment(x, w = NULL, axial = TRUE, na.rm = FALSE)
x |
numeric vector. Values in degrees. |
w |
(optional) Weights. A vector of positive numbers and of the same
length as |
axial |
logical. Whether the data are axial, i.e. pi-periodical
( |
na.rm |
logical value indicating whether |
Negative values of skewness indicate skewed data in counterclockwise direction.
Large kurtosis values indicate tailed, values close to 0
indicate packed
data.
list containing
skewness
second central sine momentum, i.e. the skewness
std_skewness
standardized skewness
kurtosis
second central cosine momentum, i.e. the kurtosis
std_kurtosis
standardized kurtosis
data("nuvel1")
PoR <- subset(nuvel1, nuvel1$plate.rot == "na")
sa.por <- PoR_shmax(san_andreas, PoR, "right")
second_central_moment(sa.por$azi.PoR)
second_central_moment(sa.por$azi.PoR, w = 1 / san_andreas$unc)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.