减少剧情标题和地图之间的距离

时间:2018-07-04 23:03:17

标签: r plot raster shapefile

library(raster)
france <- getData('GADM', country = 'FRA', level = 1)

plot(france, main = "my.title")

enter image description here

par(mfrow = c(1,2))
plot(france, main = "my.title")
plot(france, main = "my.title")

enter image description here

如何缩小my.title和地图之间的距离?我尝试过,但这只会增加地图的大小

par(mar = c(0, 0, 0, 0))
par(mfrow = c(1,2))
plot(france, main = "my.title")
plot(france, main = "my.title")

0 个答案:

没有答案