I'm trying to obtain the matrix (Ordered dissimilarity matrix) from the ggplot that is generated with the function fviz_dist
from factoextra
package.
From my original data I generated a distance correlation matrix using dis.cor (I need to use spearman correlation coefficient), as follows:
dist.cor<-get_dist(b, method = "spearman")
c<-round(as.matrix(dist.cor)[1:nrow(b),1:nrow(b)],1)
But this matrix is not ordered so you can't visualize the clusters.
Then, with function fviz_dist I can generate the ggplot of the Distance Correlation Matrix (ordered):
fviz_dist(dist.cor)
But I don't need the image, I need that ordered matrix in a dataframe or matrix format so I can export it using write.csv and open it in excel to work with it.
Thanks!
You can extract the data from the ggplot object:
The variable names are already factored and ordered:
So it's a matter of pivoting it: