plot,oce-method {oce} | R Documentation |
This creates a pairs
plot of the elements in the data
slot, if there are more than 2 elements there, or a simple xy plot if 2
elements, or a histogram if 1 element.
## S4 method for signature 'oce' plot(x, y, ...)
x |
A basic |
y |
Ignored; only present here because S4 object for generic |
... |
library(oce) o <- new("oce") o <- oceSetData(o, 'x', rnorm(10)) o <- oceSetData(o, 'y', rnorm(10)) o <- oceSetData(o, 'z', rnorm(10)) plot(o)