aclinicalProteomicsData-class(clippda)
aclinicalProteomicsData-class()所属R语言包:clippda
Class "aclinicalProteomicsData"
类“aclinicalProteomicsData”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This is a class object for the mass spectrometry data sets, which are in the same format as the raw data from the Biomarkers wizard software. It has slots of matrices of raw mass spectrometry and phenotypic data sets, a character variable for the classes of all the covariates in the phenotypic data matrix, a character variable for the covariates of interest, and numeric value for the number of peaks of interest.
这是一个质谱数据集,这是在相同的生物标志物向导软件的原始数据格式的类的对象。它具有原料质谱和表型数据集,字符类中的所有协变量的表型数据矩阵,为感兴趣的协变量的字符变量,数值的利益峰变量矩阵插槽。
类的对象----------Objects from the Class----------
Objects can be created by calls of the form new("aclinicalProteomicsData", ...).
创建对象可以通过检测的形式new("aclinicalProteomicsData", ...)。
插槽----------Slots----------
rawSELDIdata: Object of class "matrix"
rawSELDIdata类"matrix":对象
phenotypicData: Object of class "matrix"
phenotypicData类"matrix":对象
variableClass: Object of class "character"
variableClass类"character":对象
covariates: Object of class "character"
covariates类"character":对象
no.peaks: Object of class "numeric"
no.peaks类"numeric":对象
方法----------Methods----------
show: Display an aclinicalProteomicsData instance.
显示:显示aclinicalProteomicsData实例。
作者(S)----------Author(s)----------
S Nyangoma
举例----------Examples----------
showClass("aclinicalProteomicsData")
data(liverdata)
data(liver_pheno)
OBJECT = new("aclinicalProteomicsData",
rawSELDIdata=as.matrix(liverdata),
phenotypicData=as.matrix(liver_pheno),
variableClass=c('numeric','factor','factor'),
no.peaks=53)
show(OBJECT)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|