Skip to contents

Produce a ggplot contour of the third-order moment over its non-redundant region.

Usage

# S3 method for class 'third'
autoplot(object, ...)

Arguments

object

a "third" object produced by third().

...

unused, for S3 generic compatibility.

Value

a ggplot contour plot.

See also

Author

Nicholas Tierney

Examples

# \donttest{
t <- third(CVD$cvd, n.lag = 4)
#> Maximum at (including symmetries):
#>   0 0
#> Minimum at (including symmetries):
#>   0 -4 4 -4 0 4
autoplot(t)

# }