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
Hello,
I am trying to have a specific absolute location layout. Is it possible?
For example I have this code that will create at tree with top-down
graph <- as_tbl_graph( data.frame( from = c("1", "1", "1", "50", "5"), to = c("200", "100", "50", "5", "2")) ) graph layout <- create_layout(graph, layout = "tree" ) ggraph(graph, layout) + geom_edge_bend() + geom_node_point() + geom_node_label(aes(label = as.data.frame(graph)$name))
What I am looking for is
I really appreciate some guidance on this.
Thank you!
The text was updated successfully, but these errors were encountered:
Not exactly sure what you are looking for, but you can specify a layout manually
x <- c(-3, -2, -1, -2, -2, 0) y <- c(0, -1, -1, 0, 1, -1) ggraph(graph, "manual", x = x,y = y) + geom_edge_bend() + geom_node_point() + geom_node_label(aes(label = as.data.frame(graph)$name))
Sorry, something went wrong.
No branches or pull requests
Hello,
I am trying to have a specific absolute location layout. Is it possible?
For example I have this code that will create at tree with top-down
What I am looking for is
I really appreciate some guidance on this.
Thank you!
The text was updated successfully, but these errors were encountered: