| plot.rsac {Rsac} | R Documentation |
Plotting, indexing, and summary methods for objects of class
"rsac".
## S3 method for class 'rsac':
plot(x, xlim = NULL, ylim = NULL, xlab = NULL,
ylab = NULL, axes = TRUE, lty = NULL, col = NULL,
onerow = FALSE, ...)
## S3 method for class 'rsac':
lines(x, ...)
## S3 method for class 'rsac':
x[i]
## S3 method for class 'rsac':
summary(object, ...)
x |
an object of class "rsac". |
xlim, ylim, xlab, ylab, axes, lty, col |
see
plot.default. |
onerow |
logical; FALSE: each trace is plotted on a
separate row (separate y-axes); TRUE: all traces are plotted on
the same row (same y-axis) and lty/col are automatically incremented for
each trace if not specified. |
i |
indices. |
object |
an object of class "rsac". |
... |
further arguments. |
none.
Eric M. Thompson <eric.thompson@tufts.edu>
data(srosa) plot(srosa, xlim = c(150, 200)) plot(srosa, onerow = TRUE) plot(srosa) plot(srosa, xlim = c(140, 280)) getunits(srosa) # See ?sync for example of how the time axis # can be misleading due to how t0 is defined. summary(srosa) plot(srosa[2])