本文介绍了如何使用库(地图)和ggplot在R中绘制东非(肯尼亚,乌干达和坦桑尼亚)的地图?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试绘制针对我的研究论文的东非大陆.特别是坦桑尼亚,肯尼亚和乌干达使用R中的 maps
和 ggplot
包?我是初学者程序员.
I am trying to map the east african continent specific to my research paper. In particular tanzania, kenya and uganda using the packages maps
and ggplot
in R? I am a beginner programmer.
推荐答案
您可以尝试以下方法:
require(maps)
map(database = "world", regions = c('kenya', 'tanzania', 'uganda'))
结果:
In addition, try to look here and here for more information.
这篇关于如何使用库(地图)和ggplot在R中绘制东非(肯尼亚,乌干达和坦桑尼亚)的地图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!