I am performing clustering on some data points which are in various degrees, like low, medium, and high. Is it advisable to convert them into numbers like low-1, med-2, hig-3, and apply k means directly, or should I use any other method?
I performed like this, but it is not always always giving good results. Sometimes it gives very good results but sometimes it does not.
Well converting continuous data to discrete is okay, as long as it's treated as discrete and not continuous. Now k-means works essentially for continuous data only. So I think, a better option will be algorithms like
k-prototypesork-modes. Wherek-prototypewill work for both continuous and categorical data and k-mode will work only for categorical data.