arima.diag.plot(z, layout=<<see below>>, type="h", ...)
# compute and plot diagnostics for simulated AR(1) series x <- arima.sim(model=list(ar=.9)) fit <- arima.mle(x,model=list(ar=.9)) diag <- arima.diag(fit) # this is equivalent to diag <- arima.diag(fit,plot=F) arima.diag.plot(diag)