Learn R Programming

synlik (version 0.1.6)

plot-synlik: Method for plotting an object of class synlik.

Description

It basically calls the slot object@plotFun with input object@data, if it has been provided by the user. Otherwise it tries to use the plot(x = object@data, y, ...) generic.

Usage

# S4 method for synlik,missing
plot(x, y, ...)

Arguments

x

An object of class synlik.

y

Useless argument, only here for compatibility reasons.

...

additional arguments to be passed to object@plotFun.

Author

Matteo Fasiolo <matteo.fasiolo@gmail.com>

See Also

synlik-class, plot.

Examples

Run this code
data(ricker_sl)

# Using ricker_sl@plotFun
plot(ricker_sl)

# Using generic plot, doesn't work well because object@data is a matrix. 
ricker_sl@plotFun <- NULL
plot(ricker_sl)

Run the code above in your browser using DataLab