autocorPlot {s20x} | R Documentation |
Autocorrelation Plot
Description
Plots current vs lagged residuals along with quadrants dividing these residuals about the value zero.
Usage
autocorPlot(fit, main = "Current vs Lagged residuals", ...)
Arguments
fit |
output from the function 'lm()'. |
main |
the plot title. |
... |
extra parameters to be passed to the |
Value
Plots current vs lagged residuals along with quadrants dividing these residuals about the value zero.
Note
autocor.plot
is deprecated inline with our new policy of removing periods from function names.
Examples
data(airpass.df)
time = 1:144
airpass.fit = lm(passengers ~ time, data = airpass.df)
autocorPlot(airpass.fit)
[Package s20x version 3.1-40 Index]