我在 RStudio 1.4.1103 上使用
tmap
。
当我尝试使用
tm_layout()
函数调用向地图添加标题时,我可以在绘图模式下看到标题,但当我切换到交互式查看模式时,标题就会消失。
请在下面找到最小的可重现代码以及结果输出图:
library(tmap)
data("World")
ttm()
tm_shape(World) + tm_polygons("HPI") + tm_layout(title="Hello World!")
更新:这似乎是最新版本 tmap 中的问题,如here所述。
我认为同样的问题仍然存在。使用 rmarkdown,我可以使用 html 解决这个问题:
<p style= "margin-bottom:0; font-weight:bold">Your title</p>
将 margin-bottom 设置为 0 很重要。