insertSectionData(beadarray)
insertSectionData()所属R语言包:beadarray
Modify the sectionData slot
修改sectionData插槽
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A function to modify the sectionData slot of a beadLevelData object. Data can be be added if it is a data frame with a number of rows equal to the number of sections in the beadLevelData object.
函数,修改beadLevelData对象的sectionData插槽。数据可以被添加,如果它是一个部分在beadLevelData对象的数量等于行的数据框。
用法----------Usage----------
insertSectionData(BLData, what, data)
参数----------Arguments----------
参数:BLData
a beadLevelData object
beadLevelData对象
参数:what
a character string specifiying a name for the new data
一个名称为新的数据字符串specifiying
参数:data
a data frame containing the data we wish to add
一个数据框包含的数据,我们想补充
Details
详情----------Details----------
This function allows users to modifiy the per\-section information that is included in the sectionData slot. Typical usage would be to store quality control data that has been computed.
此功能允许用户,以modifiy每\节的信息,包括在sectionData插槽。典型的用法是,将已计算的质量控制,数据存储。
值----------Value----------
a modified beadLevelData object with the new data attached to sectionData
修改后的beadLevelData与连接到sectionData新的数据对象
作者(S)----------Author(s)----------
Mark Dunning
举例----------Examples----------
if(require(beadarrayExampleData)){
data(exampleBLData)
qct = makeQCTable(exampleBLData)
exampleBLData = insertSectionData(exampleBLData, what="ProbeQC", data = qct)
exampleBLData@sectionData
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|