Revision | 86851c4580b9c84e6497d31e63a5fff6ac158664 (tree) |
---|---|
Zeit | 2018-06-08 05:29:21 |
Autor | Lorenzo Isella <lorenzo.isella@gmai...> |
Commiter | Lorenzo Isella |
I added a black like for the borders of the countries in the map.
@@ -1226,7 +1226,8 @@ | ||
1226 | 1226 | << f8, highlight=T, eval=T,message=F, fig.height=3, echo=-2 >>= |
1227 | 1227 | gpl<-ggplot(world_debt,aes(x=long, y=lat, |
1228 | 1228 | group=group))+ |
1229 | -geom_polygon(aes(fill = debt_as_pct_of_gdp )) + | |
1229 | +geom_polygon(aes(fill = debt_as_pct_of_gdp ), | |
1230 | +colour = "black", size=0.1) + | |
1230 | 1231 | theme.map +labs(title = str_c('Debt as %GDP ') |
1231 | 1232 | ,fill = str_c('Net public debt\nas % of GDP')) + |
1232 | 1233 | scale_fill_viridis(na.value = "grey50") |