Description Usage Arguments Details Value Author(s) See Also Examples
Extracts the red and green spot intensitites (both foreground and background)
and returns a RawData
object.
1 2 | ## S3 method for class 'ScanAlyzeData'
getRawData(this, slides=NULL, fg=c("auto"), bg=("auto"), ...)
|
slides |
Specifying which slides to be extracted. If |
fg |
If |
bg |
If |
The R and Rb channels will come from the CH2* fields, and the G and Gb channels will come from the CH1* fields. To swap the channels just use dyeSwap().
Returns a RawData
object containing the specified slides.
Henrik Bengtsson (http://www.braju.com/R/)
For more information see ScanAlyzeData
.
1 2 3 4 5 6 7 8 9 10 11 | sa <- ScanAlyzeData$read("group4.dat", path=system.file("data-ex", package="aroma"))
# Get the foreground and the background
raw <- getRawData(sa)
# The the background corrected data
ma <- getSignal(raw, bgSubtract=FALSE)
# Plot M vs A with a lowess line through the data points
plot(ma, slide=1)
lowessCurve(ma, lwd=2, gridwise=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.