relative.position(RSAGA)
relative.position()所属R语言包:RSAGA
Relative Topographic Position
相对地形位置
译者:生物统计家园网 机器人LoveR
描述----------Description----------
relative.position and relative.rank are used with focal.function to determine the relative value of a grid cell compared to its surroundings, either on a metric scale or
relative.position和relative.rankfocal.function,以确定网格单元格的相对价值及其周边区域相比,无论是在公制刻度或使用的
用法----------Usage----------
relative.position(x)
relative.rank(x, ties.method="average")
参数----------Arguments----------
参数:x
a square matrix with the grid data from the moving window, possibly containing NA values
一个方阵,从所述移动窗口的网格数据,可能含有NA值
参数:ties.method
see rank
看到rank
值----------Value----------
If x is provided, a numeric value in the interval [0,1] is returned.
如果x提供,则返回一个数值在区间[0,1]。
If x is missing, a character vector of same length giving suggested variable (or file) names, here "relpos" and "relrank",
x如果丢失,相同长度的字符向量的建议变量(或文件)的名字,这是"relpos"和"relrank",
(作者)----------Author(s)----------
Alexander Brenning
参见----------See Also----------
focal.function, rank,
focal.function,rank,
实例----------Examples----------
m = matrix( round(runif(9,1,10)), ncol=3 )
print(m)
relative.position(m)
relative.rank(m)
## Not run: [#不运行:]
focal.function("dem",fun=relative.rank,radius=5)
focal.function("dem",fun=relative.position,radius=5)
relrank = as.vector(read.ascii.grid("relrank")$data)
relpos = as.vector(read.ascii.grid("relpos")$data)
plot(relpos,relrank,pch=".")
cor(relpos,relrank,use="complete.obs",method="pearson")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|