Solved – How to plot clusters in more than 3 dimensions

clusteringdata visualization

I have 100 data points, observed on 15 variables. I want to cluster my 100 observations, but I am unable to visualise 15-dimensional clusters in MATLAB.

Best Answer

Calculate distances between data points, as appropriate to your problem.

Then plot your data points in two dimensions instead of fifteen, preserving distances as far as possible. This is probably the key aspect of your question. Read up on multidimensional scaling (MDS) for this.

Finally, color your points according to cluster membership.