我正在尝试将美国的 Choropleth 地图格式化为特定颜色,不幸的是,在使用scale_fill_brewer
更改颜色时;只有 48 个州这样做(夏威夷和阿拉斯加没有)。是否有可能知道我是否也可以在夏威夷和阿拉斯加实施着色?
library(choroplethr)
library(choroplethrMaps)
library(ggplot2)
data(df_pop_county)
county_choropleth(df_pop_county, title = "Title1", legend = "Top 20% of Index", num_colors = 9) +
geom_polygon(aes(fill=value), color="white") +
scale_fill_brewer(name="Top Index", palette="YlOrRd")