
Plot the region of the third-order moment outside the test limits
Source:R/plot.nonlintest.R
autoplot.nonlintest.RdReturns a ggplot contour plot of the third-order moment region that
exceeds the bootstrap test limits computed by nonlintest(). Returns
NULL invisibly with an informational message if no points exceed
the limits.
Usage
# S3 method for class 'nonlintest'
autoplot(object, ...)Arguments
- object
a
nonlintestobject produced bynonlintest().- ...
unused, for S3 generic compatibility.
Examples
# \donttest{
if (FALSE) { # \dontrun{
test_res <- nonlintest(data = CVD$cvd, n.lag = 4, n.boot = 1000)
autoplot(test_res)
} # }
# }