We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I couldnt find any pointers in the code for this but it seems that the n parameter works differently for the 2-version than for the standard version?
library(igraph) library(ggraph) g <- graph.full(3) V(g)$type <- c("a", "b", "c") ggraph(g, "stress") + geom_edge_link2(edge_width = 2, aes(color = node.type), n = 3)
ggraph(g, "stress") + geom_edge_link(edge_width = 2, aes(color = as.factor(stat(index))), n = 3)
It looks like there are 4 points for geom_edge_link2 and 3 points for geom_edge_link
geom_edge_link2
geom_edge_link
Apologies if this is intended and I am missing something
The text was updated successfully, but these errors were encountered:
hmm... yeah - it seemed I changed course midways about whether n meant number of segments or number of vertices... good catch
n
Sorry, something went wrong.
Closing it here as this is an inconsistency inherited from ggforce
No branches or pull requests
I couldnt find any pointers in the code for this but it seems that the n parameter works differently for the 2-version than for the standard version?
It looks like there are 4 points for
geom_edge_link2
and 3 points forgeom_edge_link
Apologies if this is intended and I am missing something
The text was updated successfully, but these errors were encountered: