powered by
This function computes trigonometric quantile regression (TQR) for univariate time series at a single frequency.
tqr.fit(y, f0, tau, prepared = TRUE)
object of rq() (coefficients in $coef)
rq()
$coef
vector of time series
frequency in [0,1)
sequence of quantile levels in (0,1)
if TRUE, intercept is removed and coef of cosine is doubled when f0 = 0.5
TRUE
f0 = 0.5
y <- stats::arima.sim(list(order=c(1,0,0), ar=0.5), n=64) tau <- seq(0.1,0.9,0.05) fit <- tqr.fit(y,f0=0.1,tau=tau) plot(tau,fit$coef[1,],type='o',pch=0.75,xlab='QUANTILE LEVEL',ylab='TQR COEF')
Run the code above in your browser using DataLab