gpt4 book ai didi

r - 使用 ggplot 在堆叠条形图中使用多个色标

转载 作者:行者123 更新时间:2023-12-02 00:41:18 26 4
gpt4 key购买 nike

我有一个数据集,其中各个样本属于一个大组和一个较小的子组。每个组都有几个子组,但每个子组只能属于一个更大的组。同样,每个样本只能属于一个子组,因此属于一个更大的组。

我想制作一个具有两种颜色含义的 True/False 堆积条形图:

  • 轮廓(颜色)是较大的组
  • 填充的是 True/False 数据,但是是较大组轮廓颜色的两种色调。

这接近我想要的,但不是浅灰色和深灰色,我想要红色水果的浅红色和深红色,绿色水果的浅绿色和深绿色,蓝色水果的浅蓝色和深蓝色。

fruit <- data.frame(Sample=1:20, 
Fruit=c(rep("Apple", 3), rep("Strawberry", 2), rep("Grape", 4),
rep("Watermelon", 4), rep("Lime", 3), rep("Blueberry", 2),
rep("Plum", 2)),
Color=c(rep("Red", 9), rep("Green", 7),
rep("Blue", 4)),
Ripe=c(rep(c(T, F), 10)))

fruit$Fruit <- factor(fruit$Fruit, unique(fruit$Fruit))
fruit$Color <- factor(fruit$Color, unique(fruit$Color))

ggplot(fruit, aes(Fruit)) +
theme_bw() +
geom_bar(stat="count", position="fill",
aes(fill=Ripe, color=Color)) +
scale_fill_manual(values=c("grey65", "grey85")) +
scale_y_continuous(labels=scales::percent)

example

这可能吗?或者有没有更好的方法可以直观地区分具有真/假值的较大组成员?谢谢

最佳答案

编辑:这可能是更正确的方法,使用 interaction 为每个因子对分配独特的颜色:

ggplot(fruit, aes(Fruit)) +
geom_bar( aes(fill=interaction(Color,Ripe), color=Color), stat="count", position="fill")+
scale_y_continuous(labels=scales::percent)+
scale_fill_manual(values=c("pink","lightgreen","lightblue","red", "green","blue"))+
theme_bw()

enter image description here

将 Color 映射到 fill,将 Ripe 映射到 alpha:

ggplot(fruit, aes(Fruit)) +
geom_bar(stat="count", position="fill",
aes(fill=Color, color=Color,alpha=Ripe)) +
scale_y_continuous(labels=scales::percent)+
scale_alpha_discrete(range=c(.5,1))+
theme_bw()

enter image description here

关于r - 使用 ggplot 在堆叠条形图中使用多个色标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46574781/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com