checkTargetInfo(marray)
checkTargetInfo()所属R语言包:marray
Verifying the order between intensities matrix and target file information
为了验证强度矩阵和目标文件的信息之间的
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Check that the foreground and backgruond intensities are stored in the same order as provided in the first column of target file.
检查的前景和backgruond的强度,在相同的顺序存储在目标文件的第一列。
用法----------Usage----------
checkTargetInfo(mraw)
参数----------Arguments----------
参数:mraw
Object of class marrayRaw or marryNorm.
对象的类marrayRaw或marryNorm。
值----------Value----------
A logical value. This function returns "TRUE" if the first column from the Target information is the same order as the foreground and backgruond intensities.
一个逻辑值。该函数返回“TRUE”,如果从目标信息的第一列是同一顺序,作为前景和backgruond的强度。
作者(S)----------Author(s)----------
Yee Hwa (Jean) Yang
举例----------Examples----------
datadir <- system.file("swirldata", package="marray")
swirl.targets <- read.marrayInfo(file.path(datadir, "SwirlSample.txt"))
data(swirl)
swirl@maTargets <- swirl.targets
checkTargetInfo(swirl)
checkTargetInfo(swirl[, 2:4])
## reorder[#重新排序]
swirl@maTargets <- swirl.targets[c(2:4, 1),]
checkTargetInfo(swirl)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|