plot_cts constructs a categorical time series plot
UTF-8
plot_cts(series, title ="Time series plot")
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.
title: The title of the graph.
Returns
The categorical time series plot.
Details
Constructs a categorial time series plot for a given CTS.
Examples
sequence_1 <- GeneticSequences[which(GeneticSequences$Series==1),]time_series_plot <- plot_cts(series = sequence_1)# Constructs a categorical# time series plot for the first 50 observations of the first time series in# dataset GeneticSequences