I have a dataframe with three columns.
data['subdomain'], data['domain'], data ['IP']
I want to build one bipartite graph for every element of subdomain that corresponds to the same domain, and the weight to be the number of times that it corresponds.
For example my data could be:
subdomain , domain, IP
test1, example.org, 10.20.30.40
something, site.com, 30.50.70.90
test2, example.org, 10.20.30.41
test3, example.org, 10.20.30.42
else, website.com, 90.80.70.10
I want a bipartite graph stating that example.org
has a weight of 3 as it has
3 edges on it etc. And I want to group these results together into a new
dataframe.
I have been trying with networkX but I have no experience especially when the edges need to be computed.
B=nx.Graph()
B.add_nodes_from(data['subdomain'],bipartite=0)
B.add_nodes_from(data['domain'],bipartite=1)
B.add_edges_from (...)
You could use
to add weighted edges, or you could use
to add edges without weights.
You may not need weights since the node degree is the number of edges adjacent to that node. For example,
yields