Description Usage Arguments Author(s) See Also Examples
Plots the log-ratios for one slide versus another.
1 2 |
slides |
|
pch |
The plot symbol. |
xlim, ylim |
The visible range on the x and the y axis. |
xlab, ylab |
The labels of the x and the y axis. |
... |
Other arguments accepted by |
Henrik Bengtsson (http://www.braju.com/R/)
*pointsMvsM()
.
For more information see MAData
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # Load some example data
SMA$loadData("mouse.data")
layout <- Layout$read("MouseArray.Layout.dat", path=system.file("data-ex", package="aroma"))
raw <- RawData(mouse.data, layout=layout)
# Get the signal
ma <- getSignal(raw, bgSubtract=TRUE)
subplots(4)
plotMvsM(ma, slides=c(1,2), xlim=c(-1,1)*3, pch=".")
points(ma, slides=c(3,4), col="red", pch=".")
points(ma, slides=c(5,6), col="blue", pch=".")
abline(a=0, b=1, lty=2)
title(main="Three different (M,M) pairs")
normalizeWithinSlide(ma, method="l")
normalizeAcrossSlides(ma)
plotMvsM(ma, slides=c(1,2), xlim=c(-1,1)*3, pch=".")
points(ma, slides=c(3,4), col="red", pch=".")
points(ma, slides=c(5,6), col="blue", pch=".")
abline(a=0, b=1, lty=2)
title(main="Same after lowess normalization")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.