plot.ijzip {RImageJROI} | R Documentation |
Plot ijzip object
Description
Plots .zip files containing ImageJ ROI objects using the 'base' graphics package.
Usage
## S3 method for class 'ijzip'
plot(x, add = FALSE, xlab = "", ylab = "", main = "", asp = 1, ...)
Arguments
x |
The |
add |
Whether to add to an existing plot. |
xlab |
a title for the x axis: see |
ylab |
a title for the y axis: see |
main |
an overall title for the plot: see |
asp |
numeric defining the aspect ratio y/x: see |
... |
Arguments to be passed to methods, such as graphical parameters (see |
Details
The function loops plot.ijroi
plotting function over all elements in x
. See plot.ijroi
for further details.
Author(s)
Mikko Vihtakari, David Sterratt
See Also
Examples
file <- file.path(system.file(package = "RImageJROI"), "extdata", "ijroi", "ijzip.zip")
x <- read.ijzip(file)
plot(x)
[Package RImageJROI version 0.1.2 Index]