r - ggplot2 geom_pointrange 中各个方面的不同颜色值,带有显着性注释

标签 r ggplot2 annotations significance

我修改了我在此 Google 群组帖子中找到的代码:"Annotations to display significant differences"最初由“Tom W”撰写

此代码生成以下点范围图:
enter image description here

我希望值(点 + 置信区间带)在方面 A 中为蓝色,在方面 B 中为红色。现在,代码允许我为每个层指定不同的颜色,但不能为每个方面指定不同的颜色。

我发现了相关的堆栈溢出帖子,但没有一个适用于这些数据的结构方式。有没有人看到解决方案?

提前致谢,
度母

library(ggplot2)
library(grid)


meanstable <- 
    structure(
        list(
            x_categories = structure(
                c(1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L), 
                .Label = c("Facet A", 
                           "Facet B"), 
                class = "factor"), 
            strata = structure(
                c(1L, 2L, 3L, 4L, 1L, 2L, 3L, 4L), 
                .Label = c("Strata 1", "Strata 2", 
                           "Strata 3", "Strata 4" ), 
                class = "factor"),            
            mu = c(0.02, 0.004, 0.07, 0.12,
                   -0.02, 0.04, 0.04, 0.11), 
            lo = c(-0.001, -0.01, 0.03, 0.07,
                   -0.03, 0.02, -0.06, -0.01), 
            hi = c(0.04, 0.03, 0.16, 0.23,
                   0.01, 0.07, 0.09, 0.20)), 
        .Names = c("x_categories", "strata", "mu", "lo", "hi" ), 
        row.names = c(NA, 8L), class = "data.frame")

segdf <- 
    structure(
        list(
            x = c(1, 1, 2, 2, 2, 3, 1, 1, 4), 
            y = c(0.05, 0.05, 0.05, 0.17, 0.17, 0.17, 0.24, 0.24, 0.24), 
            xend = c(1, 2, 2, 2, 3, 3, 1, 4, 4), 
            yend = c(0.045, 0.05, 0.045, 0.165, 0.17, 0.165, 0.235, 0.24, 0.235), 
            x_categories = structure(c(1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L), 
                                     class = "factor", 
                                     .Label = "Facet A")), 
        .Names = c("x", "y", "xend", "yend", "x_categories"), 
        row.names = c(NA, -9L), class = "data.frame")

segdf2 <- 
    structure(
        list(
            x = c(1, 1, 2, 1, 1, 4 ), 
            y = c(0.08, 0.08, 0.08, 0.21, 0.21, 0.21), 
            xend = c(1, 2, 2, 1, 4, 4), 
            yend = c(0.075, 0.08, 0.075, 0.205, 0.21, 0.205), 
            x_categories = structure(c(1L, 1L, 1L, 1L, 1L, 1L), 
                                     class = "factor", 
                                     .Label = "Facet B")), 
        .Names = c("x", "y", "xend", "yend", "x_categories"), 
        row.names = c(NA, -6), class = "data.frame")

anodf <- 
    structure(
        list(
            x = c(1.5, 2.5, 2.5), 
            y = c(0.055, 0.175, 0.245), 
            x_categories = structure(c(1L, 1L, 1L), 
                                     class = "factor", 
                                     .Label = "Facet A")), 
        .Names = c("x", "y", "x_categories"), 
        row.names = c(NA, -3L), 
        class = "data.frame")

anodf2 <- 
    structure(
        list(
            x = c(1.5, 2.5), 
            y = c(0.085, 0.215), 
            x_categories = structure(c(1L, 1L), 
                                     class = "factor", 
                                     .Label = "Facet B")), 
        .Names = c("x", "y", "x_categories"), 
        row.names = c(NA, -2L), 
        class = "data.frame")

ggplot(meanstable) + 
    geom_hline(yintercept=0, linetype="dashed", colour="grey55") +
    geom_pointrange(size = 1.2, 
                    aes(x = strata, ymin = lo, ymax = hi, y = mu, 
                        color = strata)) + 
    facet_wrap(~x_categories, nrow = 1) + 
    scale_color_manual(values=c("grey55","grey55", "grey55", "grey55")) + 
    scale_x_discrete("X Axis Label") + 
    scale_y_continuous("Y Axis Label") + 
    theme(legend.position = "none", 
          strip.text.x = element_text(size = rel(1.5)),
          axis.title.y = element_text(vjust=1.4, size = rel(1.4)),
          axis.title.x = element_text(vjust=-0.2, size = rel(1.4)),
          axis.text = element_text(size = rel(1.1)),
          plot.margin = unit(c(1, 1, 1, 1), "cm")) +
    geom_segment(data = segdf, size = .8, 
                 aes(x=x, y=y, xend=xend, yend=yend, x_categories = x_categories)) +
    geom_text(data = anodf, aes(x=x, y=y, x_categories = x_categories), 
              label=c("*", "**", "*"), size = 8) +
    geom_segment(data = segdf2, size = .8, 
                 aes(x=x, y=y, xend=xend, yend=yend, x_categories = x_categories)) +
    geom_text(data = anodf2, aes(x=x, y=y, x_categories = x_categories), 
              label=c("***", "**"), size = 8)

最佳答案

您希望颜色随刻面而不是层而变化,因此在您想要的元素(点范围)的美学映射中更改它:

geom_pointrange(size = 1.2, 
                aes(x = strata, ymin = lo, ymax = hi, y = mu, 
                    color = x_categories))

然后更改比例定义中的比例映射:
scale_colour_manual(values = c("Facet A" = "blue", "Facet B" = "red"))

把这些放在一起,你得到


ggplot(meanstable) + 
    geom_hline(yintercept=0, linetype="dashed", colour="grey55") +
    geom_pointrange(size = 1.2, 
                    aes(x = strata, ymin = lo, ymax = hi, y = mu, 
                        color = x_categories)) + 
    facet_wrap(~x_categories, nrow = 1) + 
    scale_colour_manual(values = c("Facet A" = "blue", "Facet B" = "red")) +
    scale_x_discrete("X Axis Label") + 
    scale_y_continuous("Y Axis Label") + 
    theme(legend.position = "none", 
          strip.text.x = element_text(size = rel(1.5)),
          axis.title.y = element_text(vjust=1.4, size = rel(1.4)),
          axis.title.x = element_text(vjust=-0.2, size = rel(1.4)),
          axis.text = element_text(size = rel(1.1)),
          plot.margin = unit(c(1, 1, 1, 1), "cm")) +
    geom_segment(data = segdf, size = .8, 
                 aes(x=x, y=y, xend=xend, yend=yend, x_categories = x_categories)) +
    geom_text(data = anodf, aes(x=x, y=y, x_categories = x_categories), 
              label=c("*", "**", "*"), size = 8) +
    geom_segment(data = segdf2, size = .8, 
                 aes(x=x, y=y, xend=xend, yend=yend, x_categories = x_categories)) +
    geom_text(data = anodf2, aes(x=x, y=y, x_categories = x_categories), 
              label=c("***", "**"), size = 8)

关于r - ggplot2 geom_pointrange 中各个方面的不同颜色值,带有显着性注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29220271/

相关文章:

r - 如何有选择地乘以列

r - ggplot 图例与 geom_rect

r - 如何使用 ggplot2 在 R 中绘制钻石?

r - geom_text 中每个标签的字体大小不同

java - 使用 spring 注释自动检测组件

R 为 fn 和 gr 优化相同的函数

R 中双索引的滚动总和

r - ggplot2:使用 geom_text() 函数未显示标签

java - Hibernate 3 关于删除级联

iphone - 是否有一个库或框架可以使用漂亮的箭头和手写创建注释?