networkx 力导向图
networkx force-directed graphs
我一直在考虑使用力导向图来表示我的一些数据,并且正在使用
生成该图
但是,我似乎无法弄清楚坐标轴到底代表什么。它应该表明节点靠得越近,它们之间的边就越多。将轴标记为 "Centrality" 之类的东西是否正确?
查看原始论文 (http://citeseer.ist.psu.edu/viewdoc/download;jsessionid=19A8857540E8C9C26397650BBACD5311?doi=10.1.1.13.8444&rep=rep1&type=pdf),他们没有标记任何轴,只是说它是二维投影。
有什么想法吗?
谢谢
轴本身没有有意义的标签。
目的是创建 2D 或 3D 网络的可打印版本。
为此,需要节点的位置,并且可以使用具有不同反对意见的不同算法。
"Their purpose is to position the nodes of a graph in two-dimensional or three-dimensional space so that all the edges are of more or less equal length and there are as few crossing edges as possible, by assigning forces among the set of edges and the set of nodes, based on their relative positions, and then using these forces either to simulate the motion of the edges and nodes or to minimize their energy."
我一直在考虑使用力导向图来表示我的一些数据,并且正在使用
生成该图但是,我似乎无法弄清楚坐标轴到底代表什么。它应该表明节点靠得越近,它们之间的边就越多。将轴标记为 "Centrality" 之类的东西是否正确?
查看原始论文 (http://citeseer.ist.psu.edu/viewdoc/download;jsessionid=19A8857540E8C9C26397650BBACD5311?doi=10.1.1.13.8444&rep=rep1&type=pdf),他们没有标记任何轴,只是说它是二维投影。
有什么想法吗?
谢谢
轴本身没有有意义的标签。 目的是创建 2D 或 3D 网络的可打印版本。 为此,需要节点的位置,并且可以使用具有不同反对意见的不同算法。
"Their purpose is to position the nodes of a graph in two-dimensional or three-dimensional space so that all the edges are of more or less equal length and there are as few crossing edges as possible, by assigning forces among the set of edges and the set of nodes, based on their relative positions, and then using these forces either to simulate the motion of the edges and nodes or to minimize their energy."