当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R somgrid 绘制 SOM 拟合图


R语言 somgrid 位于 class 包(package)。

说明

SOM 结果的绘图函数。

用法

somgrid(xdim = 8, ydim = 6, topo = c("rectangular", "hexagonal"))

## S3 method for class 'somgrid'
plot(x, type = "p", ...)

## S3 method for class 'SOM'
plot(x, ...)

参数

xdim , ydim

网格尺寸

topo

网格的拓扑结构。

x

从类 "somgrid""SOM" 继承的对象。

type , ...

图形参数。

细节

"somgrid" 记录用于(批量或 on-line)SOM 的网格坐标:它有一个绘图方法。

"SOM" 类的绘图方法在每个网格点绘制代表的 stars 图。

对于 somgrid ,类 "somgrid" 的对象,包含组件的列表

pts

给出网格点位置的两列矩阵。

xdim , ydim , topo

somgrid 的参数中所示。

参考

Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. Fourth edition. Springer.

也可以看看

batchSOM , SOM

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Plot SOM Fits。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。