plot_ifsct {ctsfeatures} | R Documentation |
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", ...)
Arguments
series |
An object of type |
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. |
Details
Constructs the IFS circle transformation for a given CTS, which is useful to identify cycles of arbitrary length.
Value
The IFS circle transformation.
Author(s)
Ángel López-Oriona, José A. Vilar
References
Weiß CH (2008). “Visual analysis of categorical time series.” Statistical Methodology, 5(1), 56–71.
Examples
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
[Package ctsfeatures version 1.2.2 Index]