2

我正在尝试为每个填充单元制作一个具有离散色阶的地图。

Choropleth 似乎将休息次数限制在 8 次或以下。

我试图在地图上绘制 16 个单位(年),并且不方便合并不同的年份。

堆栈溢出问题的示例

library(choroplethr)
library(ggplot2)
data(df_pop_county)
df_pop_county$value<-sample(1:15,nrow(df_pop_county),replace=T) #create some random variable of only 15 units
choro = CountyChoropleth$new(df_pop_county)
choro$title = "2012 Population Estimates"
choro$ggplot_scale = scale_fill_brewer(name="Population", palette=2, drop=FALSE)
choro$render()
4

1 回答 1

3

Choroplethr 在离散时最大为 9。

library(choroplethr)
library(ggplot2)
data(df_pop_county)
df_pop_county$value<-sample(1:15,nrow(df_pop_county),replace=T) #create some random variable of only 15 units
choro = CountyChoropleth$new(df_pop_county)
choro$title = "2012 Population Estimates"
choro$set_num_colors(9)
choro$ggplot_scale = scale_fill_brewer(name="Population", palette=2, drop=FALSE)
choro$render()

2012 年人口估计

于 2016-12-09T21:22:54.823 回答