我试图在R地图中添加Lat和Lon轴标题。
我在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)我想添加纬度和经度作为轴标题。
发布于 2019-09-03 20:19:16
这就是你要找的东西吗?
mtext(c("Longitude", "Latitude"), side=c(1,2), line = 2.5)https://stackoverflow.com/questions/57776665
复制相似问题