I have data obtained from a survey and I would like to make a grouping of the individuals who responded to the survey according to the questions they answered. The range of answers is: strongly agree, agree, neutral, not satisfied, not at all satisfied.
Since this is categorical data I have thought of making the following change:
strongly agree= 0.5
agree=0.4
neutral=0.3
not satisfied=0.2
not at all satisfied=0.1
Below is an example of the transformed dataset:
q1,q2,q3
0.1,0.2,0.3
0.4,0.3,0.2
0.1,0.1,0.1
Would it be possible now to use K-means and obtain consistent results or should I use some other method such as K-modes?