insertBeadData(beadarray)
insertBeadData()所属R语言包:beadarray
Add, modify or remove data in a beadLevelData object
新增,修改或删除数据在beadLevelData对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Add, modify or remove data in a beadLevelData object.
新增,修改或删除beadLevelData对象中的数据。
用法----------Usage----------
insertBeadData(BLData, array = 1, what, data)
removeBeadData(BLData, array = 1, what)
参数----------Arguments----------
参数:BLData
An object of class beadLevelData-class.
对象类beadLevelData-class。
参数:array
Positive integer specifying what section should be modified.
正整数,指定哪个部门应该进行修改。
参数:what
Name of the data that is being modified. If "what" doesn't exist then a new entry is created using the name specified in this argument.
正在修改的数据的名称。如果是不存在,则使用此参数指定的名称创建一个新的条目。
参数:data
A numeric vector to be stored, the same length as the number of beads in the section specified by the array argument.
要存储一个数值向量,数组参数指定的节数珠的长度相同。
Details
详情----------Details----------
These functions allow the beadData slot of the beadLevelData-class object to be modified for a given array.
这些功能允许beadDatabeadLevelData-class对象插槽对于一个给定的数组被修改。
值----------Value----------
Returns an object of class beadLevelData-class.
类beadLevelData-class返回一个对象。
作者(S)----------Author(s)----------
Mike Smith
举例----------Examples----------
if(require(beadarrayExampleData)){
data(exampleBLData)
logIntensity <- log2(getBeadData(exampleBLData, what = "Grn", array = 1))
## This will add a new entry called "LogGrn" to BLData[#这将添加一个新条目,称为“LogGrn”到BLData]
exampleBLData <- insertBeadData(exampleBLData, array = 1, what = "LogGrn", data = logIntensity)
head(exampleBLData[[1]])
## Supplying an existing entry to "what" will overwrite the current data[#提供一个现有的条目“是什么”将覆盖当前的数据]
exampleBLData <- insertBeadData(exampleBLData, array = 1, what = "Grn", data = logIntensity)
head(exampleBLData[[1]])
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|