expand.som(wccsom)
expand.som()所属R语言包:wccsom
Expand a SOM network
展开的SOM网络
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Increases the size of a network by a factor of 2 in both x and y directions; code vectors for new units are interpolated.
由一个因子2在x和y方向上的一个网络的大小增加新的单位的代码矢量进行插值。
用法----------Usage----------
expand.som(somnet, plotit=FALSE)
参数----------Arguments----------
参数:somnet
Object of class "wccsom", generated by wccsom.
对象的类的“wccsom”,所产生的wccsom。
参数:plotit
If TRUE, plots the new network with the original units coloured white, the new ones red.
如果TRUE,描绘了新的网络与原单位的新的花色有白,红。
Details
详细信息----------Details----------
For hexagonal grids, the six closest units are used for interpolation, weighted by distance; for rectangular grids, the four closest are used.
对于六角形网格,用于插值,加权距离最接近的六个单元为矩形网格,用于四个最接近的。
值----------Value----------
Returns the new network.
返回新的网络。
实例----------Examples----------
data(cepha)
gr <- somgrid(3,3, "hexagonal")
set.seed(7)
x <- wccsom(cepha$patterns, grid=gr, trwidth=20, rlen=50)
x2 <- expand.som(x, plotit=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|