traps.info(secr)
traps.info()所属R语言包:secr
Detector Attributes
检测器的属性
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Extract or replace attributes of an object of class "traps".
提取或替换属性的对象类的“陷阱”。
用法----------Usage----------
polyID(object)
polyID(object) <- value
transectID(object)
transectID(object) <- value
searcharea(object)
transectlength(object)
参数----------Arguments----------
参数:object
a "traps" object
一个“陷阱”对象
参数:value
replacement value (see Details)
重置价值(见详情)
Details
详细信息----------Details----------
The "polyID" and "transectID" functions assign and extract the attribute of a "traps" object that relates vertices (rows) to particular polygons or transects. The replacement value should be a factor of length equal to nrow(object).
的“polyID和transectID”的功能分配和提取属性的一个“陷阱”涉及顶点(行)的对象,特别是多边形或断面。重置价值应该是长度等于向NROW(对象)的一个因素。
The "searcharea" of a "polygon" traps object is a vector of the areas of the component polygons in hectares. This value is read-only.
“多边形”陷阱对象的searcharea是一个向量的组件的领域的多边形公顷。这个值是只读的。
The "transectlength" of a "transect" traps object is a vector of the lengths of the component transects in metres. This value is read-only.
划定的陷阱对象的transectlength是一个矢量的长度,以米为单位的组件断面。这个值是只读的。
值----------Value----------
polyID - a factor with one level per polygon. searcharea - numeric value of polygon areas, in hectares. transectlength - numeric value of transect lengths, in metres.
polyID - 与多边形的一个层面,每一个因素。 searcharea - 数值的多边形区域,公顷。 transectlength - 样的长度,以米为单位的数值。
参见----------See Also----------
traps
traps
实例----------Examples----------
## default is a single polygon[默认情况下是一个多边形]
temp <- make.grid(detector = "polygon", hollow = TRUE)
polyID(temp)
plot(temp)
## split in two[#一分为二]
temp <- make.grid(detector = "polygon", hollow = TRUE)
polyID(temp) <- factor(rep(c(1,2),rep(10,2)))
plot(temp)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|