Learn R Programming

ctsfeatures (version 1.2.2)

plot_ifsct: Constructs the IFS circle transformation of a categorical time series

Description

plot_ifsct constructs the IFS circle transformation of a categorical time series.

Usage

plot_ifsct(series, alpha, beta, title = "IFS circle transformation", ...)

Value

The IFS circle transformation.

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.

alpha

Parameter alpha in the circle transformation.

beta

Parameter beta in the circle transformation.

title

The title of the graph.

...

Additional parameters for the function.

Author

Ángel López-Oriona, José A. Vilar

Details

Constructs the IFS circle transformation for a given CTS, which is useful to identify cycles of arbitrary length.

References

weiss2008visualctsfeatures

Examples

Run this code
sequence_1 <- GeneticSequences[which(GeneticSequences$Series==1),]
ct <- plot_ifsct(sequence_1, alpha = 0.1, beta = 0.1) # Constructing the IFS circle transformation
# for the first CTS in dataset GeneticSequences

Run the code above in your browser using DataLab