我正在尝试在R中创建平铺图(通过Jupyter笔记本工作),到目前为止,我得到了以下内容。我最初使用的是Color Brewer的BuGn调色板,但想更改它-但是,尽管更改了我的代码,颜色也不会改变(即使代码看起来运行得很好,并且在生成图形时没有任何错误消息)。有什么想法我要去哪里吗?
这是输出的图片-https://ibb.co/R90R3PY
datapoints %>%
count(icd_chap, sumexpcomb) %>%
ggplot(mapping = aes(x = icd_chap, y = sumexpcomb)) +
geom_tile(mapping = aes(fill = n)) + scale_color_brewer(palette = "OrRd", direction=-1) + theme_bw() +
theme(axis.text.x = element_text(angle =60, hjust=1)) + labs(y = "Exposure combination", x="ICD-10 chapter" )