1

我正在尝试使用 gephi (http://gephi.org/) 生成朋友地图。目前我的数据存储在一个字典中,如下所示:

{id1 : [friend_id, friend_id2 etc],
id2 : [friend_id3],
id3 : ... }

gephi 需要的数据结构是什么,看起来像这样 https://gephi.org/wp-content/themes/gephi/images/screenshots/layout2-mini.png

非常感谢!

4

1 回答 1

0

您可以在多个之间进行选择。最简单的方法是使用 Excel 图表并将其保存为 CSV。在第一列中放入 person1id,在 column2 中放入 person2id:

 person1id  person2id
 Adam       Maria
 Maria      Ben
 Ben        Adam

您还可以使用以下任何格式:https ://gephi.org/users/supported-graph-formats/ 从您的数据中最容易生成的可能是 GML 或 GraphML。

另请参阅我对这个问题的回答,概述如何使用 GML:Data structure for Visualizing organizations and individual using Gephi?

于 2012-11-21T06:46:20.260 回答