I want to visualise my networkx graph in Gephi. My graph has two types of nodes ntype="main"
and ntype="sub"
as follows.
[('organisation', {'ws': 347.9, 'ntype': 'main'}), ('employee', {'ws': 0, 'ntype': 'sub'}),
('minor_staff', {'ws': 0, 'ntype': 'sub'}), ('assets', {'ws': 0, 'ntype': 'sub'}),
('stocks', {'ws': 315.0, 'ntype': 'main'}), ('HR', {'ws': 0, 'ntype': 'sub'}),
('Director_board', {'ws': 0, 'ntype': 'sub'}), ('stakeholders', {'ws': 0.1, 'ntype': 'sub'}),
('stockmarket', {'ws': 488.5, 'ntype': 'main'}), ('events', {'ws': 0, 'ntype': 'sub'}),
('facilities', {'ws': 0, 'ntype': 'extended'})]
When visualising with Gephi, I want to show my main
nodes as blue and sub
nodes as grey.
Is there any special way of saving the nodes in networkx, for Gephi to identify these color codes?