ellipsoidGate2FlowJoVertices(flowWorkspace)
ellipsoidGate2FlowJoVertices()所属R语言包:flowWorkspace
Get the vertices of an ellipsoid gate needed to export it to flowJo
得到一个椭球栅的顶点需要出口到flowJo
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Fetches the top, bottom, right, and leftmost points of an ellipsoid gate (represented by a covariance matrix), for export to flowJo.
提取的顶部,底部,右侧,椭球门最左边的点(由协方差矩阵表示)出口flowJo,。
用法----------Usage----------
## S4 method for signature 'ellipsoidGate'
ellipsoidGate2FlowJoVertices(gate, level = 0.95,...)
参数----------Arguments----------
参数:gate
ellipsoidGate object.
ellipsoidGate对象。
参数:level
numeric. The quantile of the ellipse to be retrieved. Defaults to 0.95 (95%)
numeric。要检索的椭圆位数。默认为0.95(95%)
参数:...
Additional arguments. Currently not used.
额外的参数。目前没有使用。
Details
详情----------Details----------
flowJo's XML representation of ellipsoid gates uses the top, bottom,right, and leftmost points of the ellipse. This function retrieves those vertices given an ellipsoidGate flowCore object.
flowJo XML表示的椭球盖茨使用顶部,底部,右侧和最左边的椭圆点。此函数检索那些ellipsoidGateflowCore对象的顶点。
值----------Value----------
A matrix with two columns. Rows are the top, bottom, right, and leftmost points on the ellipse (rotated).
一个matrix两列。行的顶部,底部,右侧,最左边的椭圆点(旋转)。
注意----------Note----------
The implementation of this function is based on the ellipse function in the ellipse package.
此功能的实现是基于ellipseellipse包的功能。
作者(S)----------Author(s)----------
Greg Finak <a href="mailto:gfinak@fhrcr.org">gfinak@fhrcr.org</a>
参考文献----------References----------
参见----------See Also----------
ellipse
ellipse
举例----------Examples----------
require(flowCore)
e<-ellipsoidGate(.gate={d<-diag(2);colnames(d)<-c("A","B");d},mean=c(2,2))
ellipsoidGate2FlowJoVertices(e);
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|