[Solved] Plot 6-D into 2-D in r [closed]
The simplest thing would be to use PCA to reduce the dimensionality of your data to 2 or 3 dimensions. k-means clustering ought to assign a group to each row of your data so you can easily plot the different groups on the reduced dataset. Here’s a simple way to do PCA though you could … Read more