LBQPlot {FitAR} | R Documentation |
The Ljung-Box portmanteau p-value is plotted vs lag.
LBQPlot(obj, SquaredQ=FALSE)
obj |
output from FitAR |
SquaredQ |
default, SquaredQ = FALSE, regular autocorrelations. If SquaredQ = TRUE use autocorrelations of squared residuals. |
Plot is produced as a side-effect. No output
This function is normally invoked when plot.FitAR is used.
A.I. McLeod and Y. Zhang
Ljung, G.M. and Box, G.E.P. (1978) On a measure of lack of fit in time series models. Biometrika 65, 297-303.
McLeod, A.I. and Zhang, Y. (2006). Partial autocorrelation parameterization for subset autoregression. Journal of Time Series Analysis, 27, 599-612.
#fit subset AR and plot diagnostic check data(SeriesA) out<-FitAR(SeriesA, c(1,2,7), ARModel="ARp") LBQPlot(out) #note that plot produces LBQPlot and RacfPlot plot(out)