wccassign(wccsom)
wccassign()所属R语言包:wccsom
Assign patterns to nodes in a SOM network by WCC value
在SOM网络的节点分配模式,以WCC值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
KNN assignment of patterns to units in a Kohonen map, with maximal WCC as the criterion.
基于Kohonen图,最大WCC的标准单位的KNN分配模式。
用法----------Usage----------
wccassign(x, data)
参数----------Arguments----------
参数:x
Trained Kohonen map
经过培训的Kohonen网络图
参数:data
Data matrix
数据矩阵
值----------Value----------
Returns a list with components:
返回一个列表的组件:
参数:classif
Unit numbers to which rows in the data matrix are assigned
在数据矩阵的行被分配的单元号码
参数:wccs
wcc value of rows in the data matrix and the units to which they are assigned.
WCC值的数据矩阵中的行数和单位分配给他们的。
(作者)----------Author(s)----------
Ron Wehrens
参见----------See Also----------
wccsom
wccsom
实例----------Examples----------
data(cepha)
gr <- somgrid(3,3, "hexagonal")
set.seed(7)
x <- wccsom(cepha$patterns, grid = gr, trwidth = 20, rlen = 50,
FineTune = FALSE, keep.data = FALSE)
sombins <- wccassign(x, cepha$patterns)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|