powered by
This function creates the quantile-crossing series (QCSER) for univariate or multivariate time series.
qcser(y, tau, normalize = FALSE)
A matrix or array of quantile-crossing series
vector or matrix of time series
sequence of quantile levels in (0,1)
TRUE or FALSE (default): normalize QCSER to have unit variance
TRUE
FALSE
y <- stats::arima.sim(list(order=c(1,0,0), ar=0.5), n=64) tau <- seq(0.1,0.9,0.05) y.qser <- qcser(y,tau) dim(y.qser)
Run the code above in your browser using DataLab