How to have “a” removed from a ggraph plot legend?

烈酒焚心 提交于 2019-12-01 03:38:45
Alexandros Papageorgiou

Answer to the original question based on comments above: The following line of code has to be added on the top of the script as per @user20650 solution.

library(grid)
GeomLabel$draw_key <- function (data, params, size) { draw_key_rect(data) }

If repel = TRUE argument is used inside geom_node_label, then in addition to the above GeomLabelRepel$draw_key <- GeomLabel$draw_key needs to be added.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!