Pārlūkot izejas kodu

Give dimension as keyword arg

Is this going to fix errors with different versions of networkx? I don't
know -- I'm on a plane mate.
master
Pete Shadbolt pirms 7 gadiem
vecāks
revīzija
ae65d09e7f
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. +1
    -1
      abp/fancy.py

+ 1
- 1
abp/fancy.py Parādīt failu

@@ -50,7 +50,7 @@ class GraphState(graphstate.GraphState, networkx.Graph):

def layout(self):
""" Automatically lay out the graph """
pos = networkx.spring_layout(self, 3, scale=np.sqrt(self.order()))
pos = networkx.spring_layout(self, dim=3, scale=np.sqrt(self.order()))
middle = np.average(pos.values(), axis=0)
pos = {key: value - middle for key, value in pos.items()}
for key, (x, y, z) in pos.items():


Notiek ielāde…
Atcelt
Saglabāt