tri.dellens(tripack)
tri.dellens()所属R语言包:tripack
Compute the Delaunay segment lengths
计算的德劳内段长度
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Return a vector of Delaunay segment lengths for the voronoi object. The Delaunay triangles connected to sites contained in exceptions vector are ignored (unless inverse is TRUE, when only those Delaunay triangles are accepted).
返回一个向量的的德劳内段长度的Voronoi对象。 Delaunay三角形连接到网站exceptions矢量被忽略(除非inverse是TRUE时,只接受那些Delaunay三角形)。
The exceptions vector is provided so that sites at the border of a region can be removed, as these tend to bias the distribution of Delaunay segment lengths. exceptions can be created by voronoi.findrejectsites.
exceptions矢量是为了使网站在边界区域可以去掉,因为这些往往偏见的Delaunay段长度的分布。 exceptions,可以创建voronoi.findrejectsites。
用法----------Usage----------
tri.dellens(voronoi.obj, exceptions = NULL, inverse = FALSE)
参数----------Arguments----------
参数:voronoi.obj
object of class "voronoi"
对象的类"voronoi"
参数:exceptions
a numerical vector
一个数值向量
参数:inverse
Logical
逻辑
值----------Value----------
A vector of Delaunay segment lengths.
一个向量的的德劳内段长度。
(作者)----------Author(s)----------
S. J. Eglen
参见----------See Also----------
voronoi.findrejectsites, voronoi.mosaic,
voronoi.findrejectsites,voronoi.mosaic,
实例----------Examples----------
data(tritest)
tritest.vm <- voronoi.mosaic(tritest$x,tritest$y)
tritest.vm.rejects <- voronoi.findrejectsites(tritest.vm, 0,1, 0, 1)
trilens.all <- tri.dellens(tritest.vm)
trilens.acc <- tri.dellens(tritest.vm, tritest.vm.rejects)
trilens.rej <- tri.dellens(tritest.vm, tritest.vm.rejects, inverse=TRUE)
par(mfrow=c(3,1))
dotchart(trilens.all, main="all Delaunay segment lengths")
dotchart(trilens.acc, main="excluding border sites")
dotchart(trilens.rej, main="only border sites")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|