我试着在
ggplot
我想加上这些国家的名字。
然而,很难在图例中添加案件数量和国家名称。
library(ggplot2)
library(dplyr)
sa.countries <- c('Argentina', 'Bolivia', 'Brazil',
'Colombia', 'Chile','Ecuador','French Guiana','Guyana',
'Paraguay', 'Peru', 'Suriname',
'Trinidad and Tobago', 'Uruguay', 'Venezuela')
countries.maps <- map_data("world", region = sa.countries)
country.cases <- tribble(~region, ~papers,
'Argentina', 33, 'Bolivia', 8, 'Brazil', 242,
'Colombia', 41, 'Chile', 9, 'Ecuador', 44,
'French Guiana', 3, 'Guyana', 0, 'Paraguay', 1,
'Peru', 8, 'Suriname', 0, 'Trinidad and Tobago', 2,
'Uruguay', 0, 'Venezuela', 7)
df.country <- left_join(countries.maps, country.cases, by="region")
ggplot(df.country, aes(long, lat, group = group))+
geom_polygon(aes(fill = papers ), color = "white") +
scale_fill_viridis_c(name='# cases', option = "C") +
coord_equal() +
theme_bw()
提前谢谢。