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