Description Usage Arguments Author(s) See Also Examples
Highlight spots in last plot.
1 2 |
include |
The indices of the spots that should be included.
If it is instead a name of one or more flags, the spots which have been
flagged with these flags are considered.
If |
exclude |
The indices of the spots that should be excluded.
If it is instead a name of one or more flags, the spots which have been
flagged with these flags are excluded.
If |
pch |
The point style to be used. Default value is 176 (a small open circle). For more information see |
cex |
The scale factor to be used. If |
col |
The color(s) to be used for the plotted spots, i.e. for the spots after inclusion and exclusion. |
... |
Common arguments accepted by most plot functions.
For more information see |
Henrik Bengtsson (http://www.braju.com/R/)
*text()
.
points
.
For more information see MicroarrayData
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | SMA$loadData("mouse.data")
layout <- Layout$read("MouseArray.Layout.dat", path=system.file("data-ex", package="aroma"))
raw <- RawData(mouse.data, layout=layout)
ma <- getSignal(raw)
# Get all spots in the grid at row 1 and at column 2.
layout <- getLayout(ma)
idx <- getIndices(layout, 1,2, NULL,NULL)
# Plot the data both highlighted and non-highlighted.
layout(matrix(1:4, ncol=2, byrow=TRUE))
plot(ma)
plotSpatial(ma)
plot(ma)
highlight(ma, idx, col="purple") # Highlight all spots in grid (1,2).
plotSpatial(ma)
highlight(ma, idx, col="purple") # Highlight all spots in grid (1,2).
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.