我想知道是否有人将ColorBrewer的Blues调色板或Viridis调色板中的颜色包括到直方图中,或者使用DataExplorer软件包创建的任何其他可视化效果
#install.packages("DataExplorer")
library(DataExplorer)
plot_histogram(iris, nrow = 2L, ncol = 2L)
这是使用theme_minimal的相同示例,但未对颜色进行任何修改。
plot_histogram(iris, ggtheme = theme_minimal())
不过,在某些页面中,我看到这是完全可能的,只是我不知道怎么做。
谢谢!