如何将轴标题添加到 R 地图中的轴?

  • 本文关键字:地图 添加 标题 r rmaps
  • 更新时间 :
  • 英文 :


我正在尝试将 Lat 和 Lon 轴标题添加到R地图中的地图中。

我在R映射中找不到适当的参数。

library(rMaps)
chile <- map("worldHires", regions="Chile", plot=FALSE, fill=TRUE)
map("worldHires", xlim = c(-90,-50), ylim = c(-60,-10))
map(chile, col="grey", fill=TRUE, add=TRUE)
map.axes()
map.scale(metric = TRUE, ratio = FALSE, cex = 0.7)

我想添加纬度和经度作为轴标题。

这是你要找的吗?

mtext(c("Longitude", "Latitude"), side=c(1,2), line = 2.5)

相关内容

  • 没有找到相关文章

最新更新