fpbind(plateCore)
fpbind()所属R语言包:plateCore
Merge multiple flowPlates into a single virtual flowPlate
合并到单个虚拟flowPlate的多个flowPlates
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A function to combine multiple flowPlates into a single flowPlate object. The plateName identifiers for the flowPlates must be unique within the set to be bound, otherwise the bind will fail.
一个功能结合多个flowPlates成一个单一的flowPlate对象。 plateNameflowPlates的标识符必须在一套独特的约束,否则将无法绑定。
用法----------Usage----------
fpbind(p1, p2, ...)
参数----------Arguments----------
参数:p1
First flowPlate
首先flowPlate
参数:p2
Second flowPlate
二flowPlate
参数:...
Additional flowPlates
额外的flowPlates
值----------Value----------
Returns a flowPlate
返回flowPlate
作者(S)----------Author(s)----------
Errol Strain
举例----------Examples----------
library(plateCore)
data(plateCore)
# Get the lymphocytes[获取淋巴单元]
rectGate <- rectangleGate("FSC-H"=c(300,700),"SSC-H"=c(50,400))
pbmcPlate <- Subset(pbmcPlate, rectGate)
# Create a flowPlate object from the platePBMC and the wellAnnotation[创建一个从“platePBMC flowPlate对象的wellAnnotation]
fp1 <- flowPlate(pbmcPlate,wellAnnotation,plateName="P1")
fp2 <- flowPlate(pbmcPlate,wellAnnotation,plateName="P2")
# Combine the plates.[结合板。]
virtPlate <- fpbind(fp1,fp2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|