Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データセットに K-Means クラスタリングを使用したいと考えています。これを行うために、R で kmeans() 関数を使用しています。
k<-kmeans(data,centers=3) plotcluster(m,k$cluster)
ただし、この関数の K の正しい値が何であるかはわかりません。これにはエルボー法を使ってみたいと思い ます。最適なクラスター数を見つけるために Elbow Method を使用してクラスター化を実行する R のパッケージはありますか?