Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plotting: multiple self-loops on a vertex are plotted on top of each other #407

Open
szhorvat opened this issue Aug 4, 2020 · 0 comments
Labels
wishlist Feature request that has not been chosen for implementation yet; vote or comment to prioritize it!

Comments

@szhorvat
Copy link
Member

szhorvat commented Aug 4, 2020

When a vertex has multiple self-loops, they are plotted on top of each other. The graphs 1-1 and 1-1, 1-1 are not visually distinguishable when plotted.

g1 and g2 look the same:

library(igraph)
g1 <- make_graph(c(1,1))
g2 <- make_graph(c(1,1, 1,1))
plot(g1)
plot(g2)

Related: igraph/python-igraph#321 (see there for a suggestion about how this might be plotted nicely)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
wishlist Feature request that has not been chosen for implementation yet; vote or comment to prioritize it!
Projects
None yet
Development

No branches or pull requests

2 participants