lvq2(class)
lvq2()所属R语言包:class
Learning Vector Quantization 2.1
学习矢量量化2.1
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Moves examples in a codebook to better represent the training set.
移动在码书的例子,以更好地代表训练集。
用法----------Usage----------
lvq2(x, cl, codebk, niter = 100 * nrow(codebk$x), alpha = 0.03,
win = 0.3)
参数----------Arguments----------
参数:x
a matrix or data frame of examples
矩阵或数据框的例子
参数:cl
a vector or factor of classifications for the examples
一个向量或分类因子的例子
参数:codebk
a codebook
1码本
参数:niter
number of iterations
迭代次数
参数:alpha
constant for training
培训常数
参数:win
a tolerance for the closeness of the two nearest vectors. </table>
一个亲密的最近的两个向量的宽容。 </ TABLE>
Details
详情----------Details----------
Selects niter examples at random with replacement, and adjusts the nearest two examples in the codebook if one is correct and the other incorrect.
niter更换随机的例子,并调整码本中最接近的两个例子,如果一个是正确的和其他不正确的选择。
值----------Value----------
A codebook, represented as a list with components x and cl giving the examples and classes.
一个码本表示,作为一个组件列表x和cl实例和类。
参考文献----------References----------
Proc. IEEE 78, 1464–1480.
Self-Organizing Maps. Springer, Berlin.
Pattern Recognition and Neural Networks. Cambridge.
Modern Applied Statistics with S. Fourth edition. Springer.
参见----------See Also----------
lvqinit, lvq1, olvq1, lvq3, lvqtest
lvqinit,lvq1,olvq1,lvq3,lvqtest
举例----------Examples----------
train <- rbind(iris3[1:25,,1], iris3[1:25,,2], iris3[1:25,,3])
test <- rbind(iris3[26:50,,1], iris3[26:50,,2], iris3[26:50,,3])
cl <- factor(c(rep("s",25), rep("c",25), rep("v",25)))
cd <- lvqinit(train, cl, 10)
lvqtest(cd, train)
cd0 <- olvq1(train, cl, cd)
lvqtest(cd0, train)
cd2 <- lvq2(train, cl, cd0)
lvqtest(cd2, train)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|