Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Since I'm new to network and graph visualization i don't know how can i import a dataset like this in Gephi: https://snap.stanford.edu/data/gemsec-Deezer.html

for a dataset like facebook: https://snap.stanford.edu/data/ego-Facebook.html

i used this code to make a .gml file and then imported it in Gephi:

import networkx as nx

g = nx.read_edgelist('facebook_combined.txt', create_using=nx.Graph(), nodetype=int)
nx.write_gml(g, "facebook_combined.gml")

But I don't know how should i do it for the mentioned dataset in windows any ideas?

question from:https://stackoverflow.com/questions/65942840/how-to-use-snap-datasets-in-gephi

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
382 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...