How to disable weights in pyvis.network graph

662 Views Asked by At

I have plotted a graph using pyvis.network like the following:

import networkx as nx
from pyvis.network import Network
G = nx.from_pandas_edgelist(df, source = 'Node1', target='Node2')
net = Network(notebook=True)
net.from_nx(G)
net.show('BRCA_sigpairs.html')

However, the resulting graph has a value of one on every edge like the following: enter image description here How can I disable these values on the edges? I tired to set edge_attr argument in the nx.from_pandas_edgelist() function as None or 0 but it didn't work.

2

There are 2 best solutions below

1
On

Add the parameter edge_attr=None:

G = nx.from_pandas_edgelist(df, source = 'Node1', target='Node2', edge_attr=None)
0
On

I solved this problem. i was not used from_pandas_edgelist()

edges = nx_graph.add_edge(cur_node, neighbor_node, weight='')

I solved this problem to add weight=''.

I want to solve the problem in this way