getisord(spdep)
getisord()所属R语言包:spdep
Getis-Ord remote sensing example data
G系数条例遥感示例数据
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The xyz data frame has 256 rows and 3 columns. Vectors x and y are of length 16 and give the centres of the grid rows and columns, 30m apart. The data start from the bootom left, Getis and Ord start from the top left - so their 136th grid cell is our 120th.
xyz数据框有256行3列。矢量图x和y是长度为16的,并给网格的行和列,30米除了中心。的数据开始从bootom左的,从左上角的G系数和Ord开始 - 因此,他们的第136个网格单元格是我们的第120。
用法----------Usage----------
data(getisord)
格式----------Format----------
This data frame contains the following columns:
该数据框包含以下几列:
x grid eastings
X格东进
y grid northings
Y网格北向
val remote sensing values
VAL遥感值
源----------Source----------
Getis, A. and Ord, J. K. 1996 Local spatial statistics: an overview. In P. Longley and M. Batty (eds) Spatial analysis: modelling in a GIS environment (Cambridge: Geoinformation International), 266.
G系数,A.和条例,1996年,JK局部空间统计:概述。 P.朗利和M.巴蒂(EDS)的空间分析建模在GIS环境(剑桥:国际GEO信息),266。
实例----------Examples----------
data(getisord)
image(x, y, t(matrix(xyz$val, nrow=16, ncol=16, byrow=TRUE)), asp=1)
text(xyz$x, xyz$y, xyz$val, cex=0.7)
polygon(c(195,225,225,195), c(195,195,225,225), lwd=2)
title(main="Getis-Ord 1996 remote sensing data")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|