提问人:StochaK 提问时间:8/12/2021 更新时间:8/12/2021 访问量:81
在 R 中为分区统计包中的离散数据创建 9 个以上的中断
Creating more than 9 breaks for discrete data in choropleth package in R
问:
根据提供的文档,set_num_colors命令在分区统计包中离散变量的中断时达到 9 个中断。
有什么办法可以解决这个问题吗?
谢谢
choro <- CountyChoropleth$new(imp[[i]])
choro$title <- paste0(as.character(forImg$year[i])," ", "SGL RISK INDEX")
choro$ggplot_scale = scale_fill_viridis(name="Risks rank", discrete=TRUE, option="C" , na.value="grey50")
choro$set_num_colors(8)
choro$render() -> impImg
ggsave(filename=paste0("impImg", "-",i, ".png"), bg="white", dpi=175, height = 1080, width=1920, units = "px")
答:
0赞
crestor
8/12/2021
#1
您将需要构建和使用具有足够元素的调色板:
https://www.datanovia.com/en/blog/easy-way-to-expand-color-palettes-in-r/
https://www.r-graph-gallery.com/40-rcolorbrewer-get-a-longer-palette.html
评论
0赞
StochaK
8/12/2021
谢谢你的回答。我最终使用了连续刻度。
评论
?df_pop_county
imp[[i]]
choropleth