statebins( dataset ,state_col= "state", value_col="value",
brewer_pal = "Spectral",)
我正在使用statebins
包来绘制美国 50 个州的能源消耗量。虽然Spectral
colorbrewer 的调色板在情节上看起来不错:
这与我希望它们的顺序完全相反。我怎样才能颠倒光谱颜色的顺序。在 ggplot 中,我曾经使用 brewerpal 逆序为:
scale_fill_gradientn(colours = rev(brewer.pal(20,'Spectral')))
但是当我使用Spectral
第一个代码块中的其他方式时,我无法使用相反的顺序。
Statebins 包详情:https ://github.com/hrbrmstr/statebins/
我在这里使用的函数是 statebins (它为美国各州创建了一个新的基于 ggplot 的“statebin”图表,离散比例)