Graph Components(spdep)
Graph Components()所属R语言包:spdep
Depth First Search on Neighbor Lists
深度优先搜索邻居列表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
n.comp.nb() finds the number of disjoint connected subgraphs in the graph depicted by nb.obj - a spatial neighbours list object.
n.comp.nb()发现的数量不相交的连通子图中的nb.obj - 空间的邻居列表对象描述。
用法----------Usage----------
n.comp.nb(nb.obj)
参数----------Arguments----------
参数:nb.obj
a neighbours list object of class nb
一个邻居列表对象类nb
值----------Value----------
A list of:
以下列表:
参数:nc
number of disjoint connected subgraphs
不相交的连通子数
参数:comp.id
vector with the indices of the disjoint connected subgraphs that the nodes in nb.obj belong to
矢量不相交的连通子指数中的节点nb.obj属于
(作者)----------Author(s)----------
Nicholas Lewin-Koh <a href="mailto:nikko@hailmail.net">nikko@hailmail.net</a>
参见----------See Also----------
plot.nb
plot.nb
实例----------Examples----------
example(columbus)
coords <- coordinates(columbus)
plot(col.gal.nb, coords, col="grey")
col2 <- droplinks(col.gal.nb, 21)
plot(col2, coords, add=TRUE)
res <- n.comp.nb(col2)
table(res$comp.id)
points(coords, col=res$comp.id, pch=16)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|