我正在尝试使用Kohenen包在R中运行SOM算法。在这里我必须手动定义xdim,ydim维度。请参阅以下代码:
som_grid <- somgrid(xdim=5, ydim=6, topo="hexagonal")
som_model <- som(data_train_matrix,
grid=som_grid,
keep.data = TRUE)
我的问题:
答案 0 :(得分:0)
我在R中表现不佳,但我认为这可以帮到你:
#Consider a dummy xdim and ydim Data.
x<-c(seq(0,5,by=0.5))
y<-c(seq(0,6,by=0.5))
## Determine the sector starting and end points.
a<-rbind(1,2,3,4,5)
b<-rbind(1,2,3,4,5,6)
sectors<-cbind(a,b)
sectors
## See the table of the sector.