plot.spotseg(spotSegmentation)
plot.spotseg()所属R语言包:spotSegmentation
Microarray Spot Segmentation Plot
芯片现货分割图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plot method for the spotseg function. Displays the result
spotseg函数图法。显示结果
用法----------Usage----------
plot(x,...)
参数----------Arguments----------
参数:x
An object of class "spotseg", which is the output of the function spotseg.
一个对象的类"spotseg",是输出功能spotseg。
参数:...
Unused but required by generic "plot" method.
未使用的,但需要通用的"plot"方法。
值----------Value----------
None, other than the displayed plot.
没有,比其他显示图。
参考文献----------References----------
Robust model-based segmentation of microarray images,\ Technical Report No.~473, Department of Statistics, University of Washington, January 2005.
参见----------See Also----------
spotseg
spotseg
举例----------Examples----------
data(spotSegTest)
# columns of spotSegTest:[对spotSegTest的列:]
# 1 intensities from the Cy3 (green) channel[1,从强度Cy3标记(绿色)通道]
# 2 intensities from the Cy5 (red) channel[2,从强度的Cy5的(红色)通道]
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)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|