rsdepth(rsdepth)
rsdepth()所属R语言包:rsdepth
RS Depth calculation
RS深度计算
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the Ray Shooting depth of a point with respect to a bivariate data set.
计算一个点的射线拍摄的深度有关一个二元数据集的。
用法----------Usage----------
rsdepth(pt,q, ...)
参数----------Arguments----------
参数:q
Numerical vector whose depth is to be calculated. Data needs to be 2-dimensional.
数值向量,以计算其深度。数据需要是2维的。
参数:pt
The data as a matrix, data frame or list. If it is a matrix or data frame, then each row is viewed as one bivariate observation. If it is a list, all components must be numerical vectors of equal length (coordinates of observations).
一个矩阵,该数据作为数据框或列表。如果它是一个矩阵或数据框,则每一行被视为一个二元观察。如果它是一个列表,所有组件都必须是相等的长度的数值向量(坐标的观测)。
参数:...
For future use.
以备将来使用。
Details
详细信息----------Details----------
In dimension 2, calculates ray shooting depth of a given point with respect to the point set. Time complexity of the simple algorithms implemented is O(n log n).
在2维中,计算射线拍摄的点集相对于一个给定的点的深度。简单的算法的时间复杂度是O(nlogn)。
值----------Value----------
Returns the exact depth of bivariate point q with respect to data set pt, the number of line segments interested by a ray from q, minimum over all rays.
返回准确的深度二元点q到数据集pt,q,至少在所有的光线的射线感兴趣的线段的数量。
(作者)----------Author(s)----------
Nabil Mustafa, Saurabh Ray, and Mudassir Shabbir.
参考文献----------References----------
参见----------See Also----------
rsmed
rsmed
实例----------Examples----------
z = matrix(rnorm(24),nc=2)
x = matrix(rnorm(2),nc=2)
rsdepth(z, x)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|