transformFilter-class(flowCore)
transformFilter-class()所属R语言包:flowCore
A class for encapsulating a filter to be performed on transformed parameters
A类封装过滤器进行转换参数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The transformFilter class is a mechanism for including one or more variable transformations into the filtering process. Using a special case of transform we can introduce transformations inline with the filtering process eliminating the need to process flowFrame objects before applying a filter.
类transformFilter是一个进入过滤过程中,包括一个或多个变量的转换机制。使用一种特殊的情况下transform“我们可以引进的转换与内联过滤消除flowFrame对象应用一个过滤器之前,需要处理的过程。
类的对象----------Objects from the Class----------
Objects of this type are not generally created “by hand”. They are a side effect of the use of the %on% method with a filter object on the left hand side and a transformList on the right hand side.
这种类型的对象不是一般的创造的“手”。他们是%on%方法与使用filter对象的左侧和右侧transformList的副作用。
插槽----------Slots----------
transforms: A list of transforms to perform on the
transforms:一列转换上执行
filter: The filter to be applied to the transformed
filter:该过滤器被应用到转化
filterId: The name of the filter (chosen
filterId:选择过滤器的名称(
延伸----------Extends----------
Class "filter", directly.
类"filter",直接。
作者(S)----------Author(s)----------
B. Ellis
参见----------See Also----------
"filter", "transform", transform
"filter","transform",transform
举例----------Examples----------
samp <- read.FCS(system.file("extdata", "0877408774.B08", package="flowCore"))
## Gate this object after log transforming the forward and side[#门这个对象后转化的正向和侧面记录]
## scatter variables[#散布变量的]
filter(samp, norm2Filter("FSC-H", "SSC-H", scale.factor=2)
%on% transform("FSC-H"=log,"SSC-H"=log))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|