Description Usage Arguments Value References See Also Examples
Plot method for the spotseg
function.
Displays the result
obtained from microarray spot segmentation via model-based clustering.
1 2 |
x |
An object of class |
... |
Unused but required by generic |
None, other than the displayed plot.
Q. Li, C. Fraley, R. Bumgarner, K. Y. Yeung, and A. Raftery\ Robust model-based segmentation of microarray images,\ Technical Report No.~473, Department of Statistics, University of Washington, January 2005.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | data(spotSegTest)
# columns of spotSegTest:
# 1 intensities from the Cy3 (green) channel
# 2 intensities from the Cy5 (red) channel
dataTransformation <- function(x) (256*256-1-x)^2*4.71542407E-05
chan1 <- matrix(dataTransformation(spotSegTest[,1]), 144, 199)
chan2 <- matrix(dataTransformation(spotSegTest[,2]), 144, 199)
hivGrid <- spotgrid( chan1, chan2, rows = 4, cols = 6, show = TRUE)
library(mclust)
hivSeg <- spotseg( chan1, chan2, hivGrid$rowcut, hivGrid$colcut)
plot(hivSeg)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.