为 R 中的 choroplethr 创建超过 8 个中断?
Create more than 8 breaks for choroplethr in R?
我正在尝试为每个填充单元制作一个具有离散色标的地图。
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()
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()
我正在尝试为每个填充单元制作一个具有离散色标的地图。
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()
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()