geary(spdep)
geary()所属R语言包:spdep
Compute Geary's C
计算Geary的c
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A simple function to compute Geary's C, called by geary.test and geary.mc;
一个简单的函数来计算Geary的C,被称为geary.test和geary.mc;
geary.intern is an internal function used to vary the similarity criterion.
geary.intern是一个内部函数,用于不同的相似准则。
用法----------Usage----------
geary(x, listw, n, n1, S0, zero.policy=NULL)
参数----------Arguments----------
参数:x
a numeric vector the same length as the neighbours list in listw
一个数值向量相同的长度的邻居列表中listw
参数:listw
a listw object created for example by nb2listw
例如创建一个listw对象的nb2listw
参数:n
number of zones
的区域数
参数:n1
n - 1
N - 1
参数:S0
global sum of weights
全球的权重总和
参数:zero.policy
default NULL, use global option value; if TRUE assign zero to the lagged value of zones without neighbours, if FALSE assign NA
默认为空,请使用全局选项的值,如果真没有邻居的滞后值的区域分配了零,如果为FALSE分配NA
值----------Value----------
a list with
一个列表
参数:C
Geary's C
Geary的c
参数:K
sample kurtosis of x
峰度为x
(作者)----------Author(s)----------
Roger Bivand <a href="mailto:Roger.Bivand@nhh.no">Roger.Bivand@nhh.no</a>
参考文献----------References----------
<h3>See Also</h3> <code>geary.test</code>, <code>geary.mc</code>,
实例----------Examples----------
data(oldcol)
col.W <- nb2listw(COL.nb, style="W")
str(geary(COL.OLD$CRIME, col.W, length(COL.nb), length(COL.nb)-1,
Szero(col.W)))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|