Description Usage Arguments Author(s) See Also Examples
Plots a spatial representation of one field.
It is recommended to use the plot
function instead of calling
this method explicitly (see *plot()
).
1 2 |
what |
What to plot. Any field that can be retrieved by |
slide |
The slide to be plotted. |
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 |
col |
The color(s) to be used for the plotted spots, i.e. for the
spots after inclusion and exclusion. If the value is
|
... |
Common arguments accepted by most plot functions.
For more information see |
cex |
For internal use only! See above. |
pch |
For internal use only! See above. |
Henrik Bengtsson (http://www.braju.com/R/)
*plot()
.
*plotXY()
.
*highlight()
.
*text()
.
For more information see MicroarrayData
.
1 2 3 4 5 6 7 8 9 10 11 12 | 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)
subplots(4)
plotSpatial(ma) # Spatial plot of log ratios before.
normalizeWithinSlide(ma, "p") # Printtipwise lowess normalization.
plotSpatial(ma) # Spatial plot of log ratios after.
plotSpatial(ma, include=(abs(ma$M) > 2))
points(ma, include=(abs(ma$M) > 2), col="red")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.