hr.kde(wild1)
hr.kde()所属R语言包:wild1
Home range estimation
活动范围估计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute a kernel density estimate of "home range"
计算的“活动范围”的内核密度估计
用法----------Usage----------
hr.kde(x, level, plot=TRUE, add=FALSE, ...)
参数----------Arguments----------
参数:x
For hr.kde, an object of class "kde", e.g., a utilization distribution produced by ud.kde.
对于hr.kde,一个类的对象“kde”,例如,利用分布产生的ud.kde。
参数:level
A scalar in (0,1]. Density isopleth, e.g., 0.95 returns a 95% kernel density home range estimate.
标量在(0,1]。密度等值线,如95%的内核密度估计的活动范围,0.95的回报。
参数:plot
Logical. Produce a plot?
逻辑。生产的图?
参数:add
Logical. Add to an existing plot on the current output device?
逻辑。当前的输出设备上,添加到现有的图?
参数:...
Not implemented.
未实现。
Details
详细信息----------Details----------
See plot.Polygons for another way of plotting polygon objects.
见plot.Polygons另一种方式绘制多边形对象的。
值----------Value----------
Returns an object of class "Polygons"{sp}
返回一个对象类“Polygons”{sp}
警告----------Warning ----------
This function could possibly return an incomplete polygon in some cases. I have not seen such an outcome, but, for safety, recommend inspection of diagnostic plots.
此功能可能在某些情况下,返回一个不完整的多边形。我还没有看到这样的结果,但为安全起见,建议检查诊断图。
(作者)----------Author(s)----------
Glen A. Sargeant<br>
U.S. Geological Survey<br>
Northern Prairie Wildlife Research Center<br>
<a href="mailto:glen_sargeant@usgs.gov">glen_sargeant@usgs.gov</a>
参考文献----------References----------
Duong, T. ks: Kernel smoothing. <http://CRAN.R-project.org/package=ks>
实例----------Examples----------
data(xy.elk)
idx <- round(seq(1,nrow(xy.elk),length.out=100))
xy <- xy.elk[idx,]
ud <- ud.kde(xy)
str(ud)
hr <- hr.kde(ud,level=0.95)
plot(xy.elk,pch=21,col=gray(0.85))
points(xy,pch=21,bg="red")
plot(hr,lty=2,add=TRUE)
mtext("95 percent kernel density estimate")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|