Python:为社交网络生成图表
我已经安装了 matplotlib 和 networkx 软件包。 有人可以告诉我这些包中存在的功能,可用于生成社交网络图,例如电影演员合作、共同创作的图,甚至 P2P 网络的图。
I have installed matplotlib and networkx packages.
Can someone tell me the function present in these packages that can be used to generate a social network graph like graph for film actor collaborations, co-authorship or even a graph for a P2P network.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为 matplotlib 不太适合这个任务。尝试使用 PIL 代替。
另外,这篇文章展示了 Christian S. Perone 如何使用Ubigraph 创建 Twitter 用户的 3D 可视化
I think that matplotlib is not too suitable for this task. Try PIL instead.
Also, this post shows how Christian S. Perone used Ubigraph to create 3D visualization of Twitter users
我会使用 PyDot,它是 graphviz 库的 pythton 绑定。
I would use PyDot, it's the pythton binding of the graphviz library.
将此视为对 Graphviz 的第二次投票。格式非常简单,布局引擎也很强大。安装 Graphviz 后,您可以添加 PyDot 来运行,或者只是将数据写入具有显示图形结构格式的文件。
查看 Graphviz 用户手册 (pdf)。
如果你想自己动手,我会选择 matplotlib,但布局很复杂。
Count this as a second vote for Graphviz. The format is pretty simple, and the layout engine is powerful. Having installed Graphviz, you could then add PyDot to run things, or simply write your data to files with format showing the graph structure.
Look at the Graphviz user's manual (pdf).
If you wanted to roll your own, matplotlib would be my choice, but layout is complicated.
您还可以使用 graph-tool 因为它有一个 graphviz 界面,非常易于使用。有关更多详细信息,请参阅网站中的文档。
You could also use graph-tool since it has an interface to graphviz, which is very easy to use. See the documentation in the website for more details.