tsRim-class(TargetSearch)
tsRim-class()所属R语言包:TargetSearch
Class for representing retention index markers
一类为代表保留指数的标记
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This is a class to represent retention index markers.
这是一个类来表示保留指数的标记。
类的对象----------Objects from the Class----------
Objects can be created by the function ImportFameSettings or by calls of the form new("tsRim", limits = [two column matrix with time limits], standard = [a vector with RI standards], mass = [m/z marker]).
对象可以创建功能ImportFameSettings或检测形式new("tsRim", limits = [two column matrix with time limits], standard = [a vector with RI standards], mass = [m/z marker])。
插槽----------Slots----------
limits: "matrix", two column matrix with lower and upper
limits:"matrix",两列矩阵上下
standard: "numeric", the marker RI values.
standard:"numeric",标志RI值。
mass: "numeric", the m/z marker.
mass:"numeric",m / z为标记。
方法----------Methods----------
rimLimits signature(obj = "tsRim"): gets the time limits.
rimLimits的signature(obj = "tsRim"):得到的时间限制。
rimLimits<- signature(obj = "tsRim"): sets the time limits.
rimLimits<-signature(obj = "tsRim"):设置时间限制。
rimMass signature(obj = "tsRim"): gets the m/z marker.
rimMasssignature(obj = "tsRim"):得到的m / z标记。
rimMass<- signature(obj = "tsRim"): sets the m/z marker.
rimMass<-signature(obj = "tsRim"):设置的m / z标记。
rimStandard signature(obj = "tsRim"): gets the standars.
rimStandard的signature(obj = "tsRim"):得到的执行标准。
rimStandard<- signature(obj = "tsRim"): sets the standars.
rimStandard<-signature(obj = "tsRim"):设置的执行标准。
作者(S)----------Author(s)----------
Alvaro Cuadros-Inostroza, Matthew Hannah, Henning Redestig
参见----------See Also----------
ImportFameSettings
ImportFameSettings
举例----------Examples----------
showClass("tsRim")
# create a rimLimit object:[创建rimLimit对象:]
# - set the lower (first column) and upper (second column) time limites to[ - 设置第二列(第一列)和上限()时间限制字数]
# search for standards.[搜索标准。]
Lim <- rbind(c(200, 300), c(400,450), c(600,650))
# - set the retention indices of the standard[ - 设置的标准保留指数]
Std <- c(250000, 420000, 630000)
# - set the mass marker[ - 设置的质量标志]
mass <- 87
# - create the object[ - 创建对象]
rimLimits <- new("tsRim", limits = Lim, standard = Std, mass = mass)
# sometimes you need to change the limits of a particular standard[有时你需要改变特定标准限制]
rimLimits(rimLimits)[2,] <- c(410, 450)
# to change the mass value[改变大众的价值]
rimMass(rimLimits) <- 85
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|