cytoFrame-class(prada)
cytoFrame-class()所属R语言包:prada
'cytoFrame': a class for storing observed quantitative properties from a population of cells, most likely from a FACS run or,
“cytoFrame”:一类用于存储观测到从一个单元,从流式单元仪运行或最有可能的人口数量,
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This class represents the data contained in a
这个类表示包含在一个数据
Details
详情----------Details----------
Although objects of class cytoFrame can be used to hold arbitrary data of cell populations, the main focus lies on flow-cytometry data.
虽然类cytoFrame对象可以用来存放任意数据的单元群,主要的焦点在于对流式单元仪检测数据。
FCS 3.0 is the Data File Standard for Flow Cytometry, Version FCS3.0. See the vignette of this package for additional information on using the object system for handling of flow-cytometry data.
FCS 3.0流式单元仪,FCS3.0版本的数据文件标准。看到这个包使用流式单元仪数据处理系统对象的附加信息的小插曲。
创建对象----------Creating Objects----------
Objects can be created using<br> new('cytoFrame',<br> exprs = ...., # Object of class matrix<br> description = .... # Object of class character<br> )<br>
可以创建对象使用参考 new('cytoFrame',参考 exprs = ...., # Object of class matrix参考 description = .... # Object of class character参考 )参考
插槽----------Slots----------
方法----------Methods----------
作者(S)----------Author(s)----------
Florian Hahne, Wolfgang Huber
参见----------See Also----------
readFCS, cytoSet, gate,
readFCS,cytoSet,gate
举例----------Examples----------
intens <- matrix(runif(100), ncol=4)
colnames(intens) <- c("FL1-H", "FL2-H", "FL3-H", "FL4-H")
a <- new("cytoFrame",
exprs=intens,
description=c(name="example data", date=date()))
description(a)
dim(exprs(a))
a[1:3, -4]
plot(a)
## Not run: [#无法运行:]
g1 <- drawGate(a, name="Gate1")
## End(Not run)[#结束(不运行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|