Closed hoodaly closed 7 years ago
When calling Animate on a discourse_map, the ekey is created using the parsed output of print(E(g)), which leads to errors as it is not one edge per line, but rather 5 per line. Using igraph's ends function is simpler and works.
Animate
print(E(g))
ends
Thank you for the PR...much appreciated. If you'd like you can add yourself as a contributor to the DESCRIPTION file with another pull request.
Thank you
When calling
Animate
on a discourse_map, the ekey is created using the parsed output ofprint(E(g))
, which leads to errors as it is not one edge per line, but rather 5 per line. Using igraph'sends
function is simpler and works.