I have a distance matrix between 500 items as a 500*500 numpy matrix. I would like to visualize it as a graph of nodes (since it is a complete connected graph, there is no point in drawing edges) which respects the distance between nodes.
I saw many posts related to this question, but most of the answers are partly working/not working.
Visualize distance matrix as a graph
Drawing a graph or a network from a distance matrix?
I know the fact that, it is not mathematically possible to visualize such a graph from the pairwise distance only. But I am OK with an approximation result which works for any number of nodes.
Any help ?