こんにちは、樋口です。書き込みありがとうございます。
クラスター分析の結果を「R Source」形式で保存し、R上で実行した
あと、以下のコードを実行してください。
そして「freq」「words1」「words2」のうち、必要なものを
write.tableコマンド等で、ファイルに書き出していただくと良いか
と思います。
freq <- as.data.frame( table(memb, dnn="cluster") )
words1 <- data.frame(
cluster = I(memb),
label = I(labels)
)
words2 <- NULL
for (i in unique(memb) ){
current <- NULL
for (h in subset(words1, words1$cluster==i)$label ){
current <- paste(current,h)
}
substr(current,0,1) <- ''
words2 <- rbind(
words2,
cbind(
i,
current
)
)
}
colnames(words2) <- c("cluster","words")
words2 <- as.data.frame(words2)