algorithm - How to use Kmodes in R (Categorical data clustering) -
i want cluster categorical data csv file. want use kmodes algorithm
csv file example(50 row data):
https://drive.google.com/file/d/0b-z58id3by5wuzduoxuwudh1ovu/view?usp=sharing
library(klar) setwd("d:/skripsi/tmc polda metro jaya 2014-2016/----data fix clear 2014- 2016/kmodes") data.to.cluster <- read.csv('data kecelakaan twitter 2014 -2016 fix -2(untuk k- means) - versi 3.csv', header = true, sep = ';') cluster.results <- kmodes(data.to.cluster[,2:5], 3, iter.max = 10, weighted = false)
i cant result code.
to honest i'm new data-visualization how can result kmodes in r/visualize it? there algorithm categorical data in r relevant documentation?
wiki
Comments
Post a Comment