如何用图书馆(地图)和ggplot绘制R中的东非(肯尼亚,乌干达和坦桑尼亚)地图?

问题描述 投票:-1回答:1

我试图将特定于我的研究论文的东非大陆绘制成图。特别是坦桑尼亚,肯尼亚和乌干达使用包装中的mapsggplot?我是初学程序员。

r ggplot2 maps
1个回答
4
投票

你可以试试这个:

require(maps)

map(database = "world", regions =  c('kenya', 'tanzania', 'uganda'))

结果:

enter image description here

此外,尝试查看herehere获取更多信息。

© www.soinside.com 2019 - 2024. All rights reserved.