unit.distances(wccsom)
unit.distances()所属R语言包:wccsom
Function to calculate distances between units in a SOM
在SOM单位之间的函数来计算距离
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Function calculates Euclidean distances between units in a SOM; if argument '"toroidal"' is TRUE, the edges of the map are considered to be joined so that the overal shape of the map is a torus. The distances are calculated correspondingly.
函数计算一个SOM单位之间的欧几里德距离,如果参数“环形”为TRUE,在图的边缘被认为是使被接合的全部测试的图形状是一个圆环。计算出相应的距离。
用法----------Usage----------
unit.distances(grid, toroidal)
参数----------Arguments----------
参数:grid
A somgrid object.
Asomgrid对象。
参数:toroidal
For toroidal maps, equal to TRUE. Default is FALSE.
对于环形图,等于为TRUE。默认值是false。
值----------Value----------
Returns a distance matrix.
返回的距离矩阵。
(作者)----------Author(s)----------
Ron Wehrens
参见----------See Also----------
wccsom, wccxyf
wccsom,wccxyf
实例----------Examples----------
gr <- somgrid(3, 3, "hexagonal")
x <- list(grid = gr)
class(x) <- "wccsom"
par(mfrow = c(1,2))
unit.dists <- unit.distances(gr, toroidal = FALSE)
plot(x, type = "property", property = unit.dists[1,],
main = "Distances to unit 1", zlim = c(0,2.75), contin = TRUE)
unit.dists <- unit.distances(gr, toroidal = TRUE)
plot(x, type = "property", property = unit.dists[1,],
main = "Toroidal distances to unit 1", zlim = c(0,2.75), contin = TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|