View source: R/ordinal_skewness.R
ordinal_skewness | R Documentation |
ordinal_skewness
computes the estimated skewness
of an ordinal time series
ordinal_skewness(series, states, distance = "Block", normalize = FALSE)
series |
An OTS. |
states |
A numerical vector containing the corresponding states. |
distance |
A function defining the underlying distance between states. The Hamming, block and Euclidean distances are already implemented by means of the arguments "Hamming", "Block" (default) and "Euclidean". Otherwise, a function taking as input two states must be provided. |
normalize |
Logical. If |
Given an OTS of length T with range \mathcal{S}=\{s_0, s_1, s_2, …, s_n\} (s_0 < s_1 < s_2 < … < s_n), \overline{X}_t=\{\overline{X}_1,…, \overline{X}_T\}, the function computes the estimated skewness given by \widehat{skew}_{d}=∑_{i=0}^n\big(d(s_i,s_n)-d(s_i,s_0)\big)\widehat{p}_i, where d(\cdot, \cdot) is a distance between ordinal states and \widehat{p}_k is the standard estimate of the marginal probability for state s_k computed from the realization \overline{X}_t.
The estimated skewness.
Ángel López-Oriona, José A. Vilar
weiss2019distanceotsfeatures
estimated_skewness <- ordinal_skewness(series = AustrianWages$data[[100]], states = 0 : 5) # Computing the skewness estimate # for one series in dataset AustrianWages using the block distance
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.