R-使用rworldmap在地图上打印特定的国家名称

时间:2019-06-16 23:48:52

标签: r ggplot2 plot rworldmap

我正在R中的rworldmap包中使用欧洲地图创建一个热图(因为我不知道如何使用ggmap或ggplot2来做到这一点)。

我只需要绘制数据框中显示的国家/地区的国名,而不是所有欧洲国家/地区的国名。我怎样才能做到这一点? 我的代码:

library(RColorBrewer)
#getting colours
colourPalette <- brewer.pal(5,'RdPu')


library(rworldmap)

europe <- data.frame(
  "country" = c("Greece", 
                "France", 
                "Spain",
                "Italy",
                "UK",
                "Finland","Norway","Sweden",
                "Germany",
                "Romania"), 
  "x" = c(2.5, 3, 2.2, 1.8,2.32, 1.99, 2.01, 2.34, 1.88, 2.45))

matched <- joinCountryData2Map(europe, joinCode="NAME", nameJoinColumn="country")





mapParams <- mapCountryData(matched, 
                            nameColumnToPlot="x", 
                            mapTitle="my Titley", 
                            addLegend=FALSE,
                            mapRegion="Europe"
                            ,colourPalette=colourPalette,
                            oceanCol="#404040", missingCountryCol="#A0A0A0")



#adding legend
do.call(addMapLegend
        ,c(mapParams
           ,legendLabels="all"
           ,legendWidth=0.5
           ,legendIntervals="data"
           ,legendMar = 2))

labelCountries()

使用labelCountries()打印所有国家名称,并且不可读。

谢谢

1 个答案:

答案 0 :(得分:2)

this的帮助下,先前的答案:

# get the coordinates for each country
country_coord<-data.frame(coordinates(matched),stringsAsFactors=F)

# label the countries
country = c("Greece", 
              "France", 
              "Spain",
              "Italy",
              "UK",
              "Finland","Norway","Sweden",
              "Germany",
              "Romania")

#filter your wanted countrys
country_coord = country_coord[country,]

#insert your labels in plot
text(x=country_coord$X1,y=country_coord$X2,labels=row.names(country_coord))

您可以使用text添加国家/地区标签,但是必须从匹配的坐标中提取坐标。 输出:

plot

您可能会在col = "color"中玩text,因为几乎无法读取某个国家/地区。或更改地图中的颜色比例