Description Usage Details Value Author(s) See Also Examples
Gets the standard deviation of the foreground pixels.
1 2  | ## S3 method for class 'GenePixData'
getForegroundSD(this, slides=NULL, channels=1:2, ...)
 | 
The GenePix fields "F532 SD" (green) and "F635 SD" (red)
are returned.
Returns a list of matrices that contain the estimated standard deviation of the pixels in the foreground region of the spots.
Henrik Bengtsson (http://www.braju.com/R/)
For more information see GenePixData.
1 2 3 4 5 6 7 8 9 10 11  |   gpr <- GenePixData$read("gpr123.gpr", path=system.file("data-ex", package="aroma"))
  raw <- getRawData(gpr)
  sd <- getForegroundSD(gpr)
  raw$RSD <- sd$RSD; raw$GSD <- sd$GSD;
  sd <- getBackgroundSD(gpr)
  raw$RbSD <- sd$RbSD; raw$GbSD <- sd$GbSD;
  subplots(4)
  plot(raw, "RSDvsR", col="red")
  plot(raw, "RbSDvsRb", col="red")
  plot(raw, "GSDvsG", col="green")
  plot(raw, "GbSDvsGb", col="green")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.