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.
K-means does not make much sense on such data.
It's designed for continuous variables. Where the name-giving mean makes sense and minimizes the least squared error.
For categoricial data, use k-medoids or k-modes instead!
Furthermore, you need to carefully consider variable importance.
Note that on categoricial / discrete data it very frequently seems to be a problem that the optimization algorithms get stuck in local optima: because there is no "continuous" path to improve the results. Because of that, the results sometimes are good, and sometimes are bad. You can then increase the number of restarts, but with increasing complexity your chance of lucky guessing decreases...