I am still learning the clustering methods.
I have a dataset with mixed types: continuous, binary, categorical. I read some articles that using 'gower' is a good clustering distance for mixed type data. So I would like to try it out and make an exploratory heatmap.
But I don't know how to make a heatmap, sample vs features from the daisy function.
library(cluster)
data(agriculture)
gower_dist <- daisy(agriculture, metric = "gower")
What I got from gower_dist
is a dissimilarity matrix, but how to use gower distance on a sample vs feature heatmap using pheatmap? like the heatmap in this post?
Thank you!
There's an option to provide the distance matrix (see
?pheatmap
) :You can try something like: