gpt4 book ai didi

r - 如何使用 R 中的 tmap 将图例放置在构面下方?

转载 作者:行者123 更新时间:2023-12-05 01:34:25 25 4
gpt4 key购买 nike

这是一个可重现的例子

library(tmap)

data("World")
tm_shape(World) +
tm_polygons("pop_est", style = "cont", legend.is.portrait=FALSE) +
tm_facets("continent") +
tm_layout(legend.position = c("left", "bottom"),
main.title = "Population",
main.title.position = "centre")

tmap plot with facets

我希望将图例放置在刻面下方,以便更好地利用空间并使所有内容更加居中。我有什么想法可以做到这一点吗?

最佳答案

您可以尝试将图例放在绘图之外并将其居中:

data("World")
tm_shape(World) +
tm_polygons("pop_est", style = "cont", legend.is.portrait = FALSE) +
tm_facets("continent") +
tm_layout(legend.outside = TRUE,
legend.outside.position = "bottom",
legend.position = c(0.25, 0.25),
main.title = "Population",
main.title.position = "centre")

enter image description here

关于r - 如何使用 R 中的 tmap 将图例放置在构面下方?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63693408/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com