powered by
Plot timewise quantiles in one frame.
mts.qplot( x, title = "mts quantile plot", prob = c(0.25, 0.5, 0.75), scaling = TRUE, xtime = NULL, plot = TRUE )
T by k data matrix: T data points in rows with each row being data at a given time point, and k time series in columns.
Character with the title of the plot. Default title is "mts quantile plot".
Probability, the quantile series of which is to be computed. Default values are 0.25, 0.5, 0.75.
If scaling = TRUE (default), then each series is standardized based on its own range. If scaling = FALSE, then the original series is used.
A vector with the values for the x labels. Default values are 1, 2, 3, ...
Receives TRUE or FALSE values. If the value is TRUE, a quantile plot is presented. Defaults is TRUE.
A list containing:
standardized - A matrix containing standardized time series.
qseries - Matrix of timewise quantiles series of order prob.
# NOT RUN { data(TaiwanAirBox032017) output <- mts.qplot(TaiwanAirBox032017[,1:5]) # }
Run the code above in your browser using DataLab