rectLookup(SearchTrees)
rectLookup()所属R语言包:SearchTrees
Perform Rectangular Lookup in 2d Space
在二维空间中进行矩形查询
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Determine which objects, stored in a SearchTrees indexing object, fall within a given rectangle in two-dimensional space.
确定哪些对象,存储在一个SearchTrees索引对象,落入在两维空间中的一个给定的矩形。
用法----------Usage----------
rectLookup(tree, ptOne, ptTwo, xlims, ylims)
参数----------Arguments----------
参数:tree
SearchTree. A SearchTree object to perform the lookup on.
SearchTree。一个SearchTree对象进行查找。
参数:ptOne
Numeric. A numeric of length two indicating x and y values for one corner of the rectangle.
数字。一个数字表示x和y的值的一个角落里的矩形的长度为二。
参数:ptTwo
Numeric. A numeric of length two indicating x and y values for the corner of the rectangle opposite to ptOne
数字。一个数字表示x和y的值长度为2为的矩形相反的角落ptOne
参数:xlims
Numeric. A numeric vector indicating the minimum and maximum x value for the rectangle. Overrides ptOne and ptTwo
数字。甲数值向量,表示矩形的最小和最大的x值。覆盖ptOne和ptTwo
参数:ylims
Numeric. A numeric vector indicating the minimum and maximum y value for the rectangle. Overrides ptOne and ptTwo
数字。甲数值向量,表示矩形的最小和最大的y值。覆盖ptOne和ptTwo
Details
详细信息----------Details----------
In the case of lookup for rectangular objects, any rectangle which overlaps the query rectangle will be returned.
在查找矩形物体的情况下,任何矩形重叠的查询矩形将被退回。
值----------Value----------
A numeric vector indicating the indicies of the object (in the order they were in when the SearchTree object was created) which fall (at least partially) within the rectangular query.
一个数字矢量的对象(以便他们在,当SearchTree对象的创建),下降(至少部分地)在矩形查询索引。
(作者)----------Author(s)----------
Gabriel Becker
参见----------See Also----------
QuadTree knnLookup
QuadTreeknnLookup
实例----------Examples----------
x = rnorm(100)
y = rnorm(100)
x2 = x + runif(100, .5, 2)
y2 = y + runif(100, .5, 2)
dat2 = cbind(x, y, x2, y2)
tree2 = createTree(dat2, dataType="rect", columns= 1:4)
inrect = rectLookup(tree2, xlim = c(0,1), ylim=c(0, 1))
col = rgb(0, 1, 0, alpha=.5)
plot(x, y2, col="white")
rect(x[inrect], y[inrect], x2[inrect], y2[inrect], col=col)
rect(0, 0, 1, 1, col="blue", lwd=3)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|