I'm trying to find a way to visualize distance matrices as a network. I came across this answer to a similar question: https://stackoverflow.com/a/37832966/8767973
While very helpful, I don't have enough familiarity with R to know what the differences are between using qgraph, igraph, or ggnet.
I have 9 samples, each can be represented by a vector. I've calculated two distance matrices using either Euclidean or Mahalanobis and I would like to be able to visualize both as separate networks. I think I need to use some implementation of a force-directed graph drawing algorithm.
Thank you