outer.convhull(tripack)
outer.convhull()所属R语言包:tripack
Version of outer which operates only in a convex hull
版外操作仅在凸壳
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This version of outer evaluates FUN only on that part of the grid cx x cy that is enclosed within the convex hull of the points (px,py).
此版本的outer评估FUN只有在这一部分的网格cx x cy括起来的凸包点(px,py)。
This can be useful for spatial estimation if no extrapolation is wanted.
这可能是有用的空间估计,外推法,如果没有希望。
用法----------Usage----------
参数----------Arguments----------
参数:cx
x cordinates of grid
x cordinates的网格
参数:cy
y cordinates of grid
Ÿcordinates的网格
参数:px
vector of x coordinates of points
矢量的x坐标的点
参数:py
vector of y coordinates of points
矢量的点的y坐标
参数:FUN
function to be evaluated over the grid
功能在网格上进行评估
参数:duplicate
indicates what to do with duplicate (px_i,py_i) points, default "remove".
表示做什么与重复(px_i,py_i)点,默认"remove"。
参数:...
additional arguments for FUN
额外的参数为FUN
值----------Value----------
Matrix with values of FUN (NAs if outside the convex hull).
矩阵与FUN(NA的值,如果外面的凸包)。
(作者)----------Author(s)----------
A. Gebhardt
参见----------See Also----------
in.convex.hull
in.convex.hull
实例----------Examples----------
x<-runif(20)
y<-runif(20)
z<-runif(20)
z.lm<-lm(z~x+y)
f.pred<-function(x,y)
{predict(z.lm,data.frame(x=as.vector(x),y=as.vector(y)))}
xg<-seq(0,1,0.05)
yg<-seq(0,1,0.05)
image(xg,yg,outer.convhull(xg,yg,x,y,f.pred))
points(x,y)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|