Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试用标记的每个县绘制新墨西哥州的地图,但标签大小总是比预期的大得多。这是我到目前为止使用的代码。
plot_usmap("counties", include=("NM"), labels=TRUE, label_color="red")
我的地图最终看起来像这样:
如何更改标签的大小以使它们不重叠?我试过 size= 但这只会改变寄宿生的大小。
谢谢您的帮助。
您可以使用以下解决方案设置标签字体大小:
library(usmap) p <- plot_usmap("counties", include=("NM"), labels=TRUE, label_color="red") # Set label font size p$layers[[2]]$aes_params$size <- 5 print(p)