plot.rsac {Rsac}R Documentation

Methods for class 'rsac'

Description

Plotting, indexing, and summary methods for objects of class "rsac".

Usage

## 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, ...)

Arguments

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.

Value

none.

Author(s)

Eric M. Thompson <eric.thompson@tufts.edu>

See Also

spect

Examples


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])


[Package Rsac version 0.1-7 Index]