パッケージのh2o.kmeans
機能を使いたい。h2o
これが私のコードです
clust <- h2o.kmeans(data = waterM, centers = 30, key = "kmeansKey", iter.max = 1000, normalize = T, init = "none", dropNACols = F );
summary(clust@model);
出力は
Length Class Mode
params 6 -none- list
centers 25560 -none- numeric
withinss 30 -none- numeric
tot.withinss 1 -none- numeric
size 30 -none- numeric
iter 1 -none- numeric
cluster
各ポイントが割り当てられるクラスタを示す (1:k からの) 整数のベクトルを含むオブジェクトがないのはなぜですか?