Computes several subfeatures associated with a categorical time series
Computes several subfeatures associated with a categorical time series
calculate_features computes several subfeatures associated with a categorical time series or between a categorical and a real-valued time series
UTF-8
calculate_subfeatures(series, n_series, lag =1, type =NULL)
Arguments
series: An object of type tsibble (see R package tsibble), whose column named Value contains the values of the corresponding CTS. This column must be of class factor and its levels must be determined by the range of the CTS.
n_series: A real-valued time series.
lag: The considered lag (default is 1).
type: String indicating the subfeature one wishes to compute.
Returns
The corresponding subfeature
Details
Assume we have a CTS of length T with range V={1,2,…,r}, Xt={X1,…,XT}, with pi
being the natural estimate of the marginal probability of the ith category, and pij(l) being the natural estimate of the joint probability for categories i and j at lag l, i,j=1,…,r. Assume also that we have a real-valued time series of length T, Zt={Z1,…,ZT}. The function computes the following subfeatures depending on the argument type:
If type=entropy, the function computes the subfeatures associated with the estimated entropy, piln(pi), i=1,2,…,r.
If type=gk_tau, the function computes the subfeatures associated with the estimated Goodman and Kruskal's tau, pjpij(l)2, i,j=1,2,…,r.
If type=gk_lambda, the function computes the subfeatures associated with the estimated Goodman and Kruskal's lambda, maxipij(l), i=1,2,…,r.
If type=uncertainty_coefficient, the function computes the subfeatures associated with the estimated uncertainty coefficient, pij(l)ln(pipjpij(l)), i,j=1,2,…,r.
If type=pearson_measure, the function computes the subfeatures associated with the estimated Pearson measure, pipj(pij(l)−pipj)2, i,j=1,2,…,r.
If type=phi2_measure, the function computes the subfeatures associated with the estimated Phi2 measure, pipj(pij(l)−pipj)2, i,j=1,2,…,r.
If type=sakoda_measure, the function computes the subfeatures associated with the estimated Sakoda measure, pipj(pij(l)−pipj)2, i,j=1,2,…,r.
If type=cramers_vi, the function computes the subfeatures associated with the estimated Cramer's vi, pipj(pij(l)−pipj)2, i,j=1,2,…,r.
If type=cohens_kappa, the function computes the subfeatures associated with the estimated Cohen's kappa, pii(l)−pi2, i=1,2,…,r.
If type=total_correlation, the function computes the subfeatures associated with the total correlation, ψij(l), i,j=1,2,…,r (see type='total_mixed_cor' in the function calculate_features).
If type=total_mixed_correlation_1, the function computes the subfeatures associated with the total mixed l-correlation, ψi(l), i=1,2,…,r (see type='total_mixed_correlation_1' in the function calculate_features).
If type=total_mixed_correlation_2, the function computes the subfeatures associated with the total mixed q-correlation, ∫01ψiρ(l)2dρ, i=1,2,…,r (see type='total_mixed_correlation_2' in the function calculate_features).
Examples
sequence_1 <- GeneticSequences[which(GeneticSequences$Series==1),]suc <- calculate_subfeatures(series = sequence_1, type ='uncertainty_coefficient')# Computing the subfeatures associated with the uncertainty coefficient# for the first series in dataset GeneticSequencesscv <- calculate_subfeatures(series = sequence_1, type ='cramers_vi')# Computing the subfeatures associated with the cramers vi# for the first series in dataset GeneticSequences