The tutorials look amazing and are the kind of content I wish all packages have, unfortunately I am unable to run many of them.
Are lots of the functions now out of date?
For instance, the second chunk of code does not run as in the tutorial.
It can be made to run with the following, but the output is different:
t.add_edge('a', 'b',ts= 1)
t.add_edge('b', 'a',ts= 2)
t.add_edge('b', 'c',ts= 3)
t.add_edge('d', 'c',ts= 4)
t.add_edge('c', 'd',ts= 5)
t.add_edge('c', 'b',ts= 6)
print(t)
The tutorials look amazing and are the kind of content I wish all packages have, unfortunately I am unable to run many of them.
Are lots of the functions now out of date?
For instance, the second chunk of code does not run as in the tutorial.
It can be made to run with the following, but the output is different:
t.add_edge('a', 'b',ts= 1)
t.add_edge('b', 'a',ts= 2)
t.add_edge('b', 'c',ts= 3)
t.add_edge('d', 'c',ts= 4)
t.add_edge('c', 'd',ts= 5)
t.add_edge('c', 'b',ts= 6)
print(t)