如何只在一种颜色的ggplot中添加图案?

How can I add pattern in only one color ggplot?

提问人:oceanpath 提问时间:11/18/2023 最后编辑:oceanpath 更新时间:11/18/2023 访问量:24

问:

如何手动为托盘选择颜色,并仅使用一种颜色创建图案?(我希望透明是白色的,有一些线条可以与白色区分开来)。

ggplot(mp8, aes(x = total, y = shape, fill = color)) +
geom_col(position = "fill") +
geom_col(colour = "black", position = "fill") +
scale_x_continuous(labels = scales::percent) +
coord_flip()

ggplot

R GGPLOT2 设计模式

评论


答: 暂无答案