pymnet
pymnet copied to clipboard
The original library for analysing multilayer networks. https://mnets.github.io/pymnet/
## Checklist Primary responsibilities assigned following our discussion, feel free to modify/object. Once an item is considered done, check its box. Async discussion in the thread for this issue. ###...
When I add edges of a single layer using the code like `mnet = MultilayerNetwork(aspects = 3)` and `mnet[1,2,'gene','gene'] = 1`, it reports the error like "KeyError: 'Invalid number of...
Hi, I'm trying to plot a multilayer with six layers, but I only get 3 and a half layers. I have tried modifying the figsize but the other layers are...
Hello May I ask how to call related packages to solve some related node indicators? For example, the degree and centrality of nodes, etc.
`mnet = MultilayerNetwork(aspects=2) #aspects==dimension` `mnet[1,2,'a','b','x','y']=1` `mnet.add_layer('c',1)` `mnet.add_layer('z', 2)` `fig=draw(mnet)` I tried example of multi aspects. But they said, Traceback (most recent call last): File "D:/TSMM/2.DigitalHumanities/MultilayerNetworksLibrary/multi_aspect2.py", line 14, in fig=draw(mnet) File...
AttributeError Traceback (most recent call last) in () 23 two_layer_net[4, 4, 'a', 'b'] = 1 24 ---> 25 fig = draw(two_layer_net, layout="circular") ....... AttributeError: 'NoneType' object has no attribute 'text'
Hi @bolozna I want the model to be displayed on the web page.And I saw that there is code in pymnet about implementing it with threejs. I called an earlier...
Seems like vscode needed %matplotlib inline to use pymnet. It works now thanks.