You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to adjust a graph so that the labels are not cut off at the bottom, but when I increase the vertical height, the arcs for my edges simply take up the extra space. How can I modify this code to (1) not cut off the labels at the bottom and (2) reduce the arc height?
I am also hoping to color each link according to the "to" value for the edge, any assistance is appreciated!
I am trying to adjust a graph so that the labels are not cut off at the bottom, but when I increase the vertical height, the arcs for my edges simply take up the extra space. How can I modify this code to (1) not cut off the labels at the bottom and (2) reduce the arc height?
I am also hoping to color each link according to the "to" value for the edge, any assistance is appreciated!
png('links.png', height=10000, width=10000, res = 600)
ggraph(net_tidy, layout = "linear", circular = FALSE) +
geom_edge_arc(aes(width = weight/2), alpha = 0.5) +
scale_edge_width(range = c(0.2, 2)) +
geom_node_text(check_overlap = TRUE, repel = FALSE,
nudge_y = -.1, aes(label = label, angle = 90, hjust = 1)) +
labs(edge_width = "Agreement") +
theme(text = element_text(size = 20), legend.position="none", legend.title = element_blank())
dev.off()
The text was updated successfully, but these errors were encountered: