hr.mcp(wild1)
hr.mcp()所属R语言包:wild1
Home range estimation
活动范围估计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute and plot a minimum convex polygon estimate of "home range"
计算并画出一个最小凸多边形估计“活动范围”
用法----------Usage----------
hr.mcp(x,y=NULL,n.min=50,plot=TRUE,add=FALSE,ID=NULL,...)
参数----------Arguments----------
参数:x
A vector, matrix, or data frame of coordinates.
一个向量,矩阵或数据框中的坐标。
参数:y
A numeric vector (if x is a vector) or NULL
一个数值向量(如果x是一个向量)或NULL
参数:n.min
If x includes fewer than n.min points, the function will return NA and a warning.
x如果包括n.min点不到,该函数将返回NA和警告。
参数:plot
Logical. Produce a plot?
逻辑。生产的图?
参数:add
Logical. Add to existing plot on current output device? Default is FALSE.
逻辑。电流输出设备添加到现有的图?默认是FALSE。
参数:ID
Required argument from Polygons
需要的参数从Polygons
参数:...
Optional arguments for plot or points (see also par).
可选参数为plot或points(见par“)。
Details
详细信息----------Details----------
See plot.Polygons for another way of plotting polygon objects.
见plot.Polygons另一种方式绘制多边形对象的。
值----------Value----------
Returns an object of class "Polygons"{sp}
返回一个对象类“Polygons”{sp}
注意----------Note----------
Replaces hr.mcp in versions 1.xx
替换hr.mcp的版本1.xx系列
(作者)----------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>
实例----------Examples----------
data(wica.bdy)
data(xy.elk)
bb <- bbox(as.matrix(xy.elk))
plot(wica.bdy,xlim=bb[1,],ylim=bb[2,],col="tan")
mcp <- hr.mcp(x=xy.elk,pch=21,bg="salmon",lty=2,add=TRUE)
box()
str(mcp)
mcp@area/1000^2
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|