Open OmarAshkar opened 3 months ago
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))
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!