mts.qplot | R Documentation |
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 )
x |
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. |
title |
Character with the title of the plot. Default title is "mts quantile plot". |
prob |
Probability, the quantile series of which is to be computed. Default values are 0.25, 0.5, 0.75. |
scaling |
If scaling = TRUE (default), then each series is standardized based on its own range. If scaling = FALSE, then the original series is used. |
xtime |
A vector with the values for the x labels. Default values are 1, 2, 3, ... |
plot |
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.
data(TaiwanAirBox032017) output <- mts.qplot(TaiwanAirBox032017[,1:5])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.