当应用于带有facet_wrap的箱线图时删除一个tableGrob

标签 r charts ggplot2 boxplot gridextra

我使用下面的代码通过在 x 轴上创建的分类变量的汇总表来丰富箱线图。

# Libs
require(ggplot2); require(gridExtra); require(grid); require(ggthemes)

# Data
data(mtcars)

# Function to summarise the data
fun_dta_sum <- function(var_sum, group, data) {
    sum_dta <- data.frame(
        aggregate(var_sum ~ group, FUN = min, data = data),
        aggregate(var_sum ~ group, FUN = max, data = data),
        aggregate(var_sum ~ group, FUN = mean, data = data))

    sum_dta <- sum_dta[,c(1,2,4,6)]
    colnames(sum_dta) <- c("Group (x axis)", "min", "max", "mean")
    rownames(sum_dta) <- NULL
    sum_dta[,-1] <-round(sum_dta[,-1],1)
    return(sum_dta)

}

# Graph
ggplot(data = mtcars, aes(x = cyl, y = qsec, fill = as.factor(gear))) +
    scale_x_discrete() +
    geom_boxplot(outlier.shape = NA) +
    scale_y_continuous(limits = quantile(mtcars$qsec, c(0.1, 0.9))) +
    scale_fill_tableau(palette = "tableau10") +
    xlab("am") + ylab("qsec") +
    facet_wrap(~am, shrink = TRUE) +
    theme_pander() +
    annotation_custom(tableGrob(
        fun_dta_sum(var_sum = mtcars$qsec, group = mtcars$cyl, 
                    data = mtcars)
    )) +
    theme(axis.title = element_text(colour = 'black', face = 'bold', size = 12,
                                    family = 'sans'),
          axis.text.x = element_text(colour = 'black', size = 14, hjust = 1, vjust = 0.5),
          axis.text.y = element_text(colour = 'black', size = 12),
          axis.line = element_line(size = 1, colour = 'black'),
          plot.title = element_text(size = 17, face = "bold", colour = "black"),
          panel.background = element_rect(fill = NA, colour = 'black'),
          panel.grid.major = element_line(colour = 'gray', linetype = 'dotted'),
          panel.grid.minor = element_line(colour = 'gray', linetype = 'dotted'),
          panel.margin = unit(1,"lines"),
          strip.background = element_rect(fill = NA, colour = NA),
          strip.text = element_text(colour = 'black', face = 'plain', size = 13),
          plot.background = element_rect(fill = NA, colour = 'black', size = 0.25),
          plot.margin = unit(c(10,10,10,10),"mm"),
          legend.position = "bottom",
          legend.background = element_rect(colour = "black"))

Problematic table

我希望通过以下方式更改代码:

  1. 我只想要一张 table ,而不是两张
  2. 我希望表格出现在左侧第一个箱线图的右上角
  3. 我不希望在左侧出现 rownames 或其他创建斜体(1,2,3)数字的内容。

最佳答案

让annotation_custom访问facetting信息可能是有意义的*;这个小小的改变似乎起到了作用,

library(ggplot2)
library(grid)
library(gridExtra)

annotation_custom2 <- 
function (grob, xmin = -Inf, xmax = Inf, ymin = -Inf, ymax = Inf, data) 
{
  layer(data = data, stat = StatIdentity, position = PositionIdentity, 
        geom = ggplot2:::GeomCustomAnn,
        inherit.aes = TRUE, params = list(grob = grob, 
                                          xmin = xmin, xmax = xmax, 
                                          ymin = ymin, ymax = ymax))
}

p <- ggplot(mtcars) + geom_point(aes(mpg, wt)) + facet_wrap(~ cyl)


tg <- tableGrob(iris[1:2,1:2], rows=NULL)
# position the table within the annotation area
tg$vp=viewport(x=unit(0,"npc") + 0.5*sum(tg$widths),
               y=unit(0,"npc") + 0.5*sum(tg$heights))
# need to wrap in a gTree since annotation_custom overwrites the vp
g <- grobTree(tg)
p + annotation_custom2(g, data=data.frame(cyl=8))

编辑 * hadley has a different view不过,annotation 被设计为出现在所有面板中。如果可能的话,我不清楚如何为这种特殊情况生成等效的几何图形。 enter image description here

关于当应用于带有facet_wrap的箱线图时删除一个tableGrob,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32807665/

相关文章:

javascript - 在 Google Charts 中以不同方式为条形图的条形着色

javascript - 如何将流程图中的线条组合在一起?

R:geom_segment ggplot2 中的线条粗细不一致

r - 有条件地为 ggplot2 设置 aes 映射

r - 使用facana函数时获取因子分析分数

r - R 函数 Fitted() 和 Predict() 之间有区别吗?

php - 什么是好的免费 PHP 图表套件?

r - 检查 y 轴是否从零开始

r - R中多个日期的最大日期

r - 用 R 中的线条连接条形图