2

我正在尝试在 facet_grid 和 facet_wrap 之间生成一种“混合”布局的图:

例子:

library(reshape2)
library(ggplot2)

data(diamonds)

# sample and reshape diamond dataset
diamonds_l <- melt(diamonds[sample(1:nrow(diamonds), 200), 
                            c("cut", "depth", "table", "price", "x")],
                   id.vars = c("cut","x"))

这是我想要的情节安排(列和深度的质量,表格,价格作为行)

ggplot( diamonds_l, aes( x = value, y = x, colour= cut))+
  geom_point( ) +
  facet_wrap( variable ~  cut, scales = "free_x", nrow=3) 

在此处输入图像描述

但是,我更喜欢 facet_grid 设计(每列/行只有一个标题)但 scales = "free_x" 在此布局中不起作用

ggplot( diamonds_l, aes( x = value, y = x, colour= cut))+
  geom_point( ) +
  facet_grid(variable ~  cut, scales = "free_x") 

在此处输入图像描述

它在这里工作,但这不是我想要的安排(质量作为行)

ggplot( diamonds_l, aes( x = value, y = x, colour= cut))+
  geom_point( ) +
  facet_grid(cut ~ variable, scales = "free_x")

在此处输入图像描述

我明白为什么它不起作用,但我想知道是否有解决方法?

谢谢!

费边

4

1 回答 1

3

经过一番挖掘,我设法成功了。从这里(@baptiste,@Roland)和这里(@Sandy Muspratt)借来的代码片段。看起来很可怕,但我基本上是通过低级操作从你的第一个情节中删除/重命名文本条。

p <- ggplot( diamonds_l, aes( x = value, y = x, colour= cut))+
  geom_point( ) +
  facet_wrap( variable ~ cut, scales = "free_x", nrow = 3) 

library(gridExtra)
gt <- ggplotGrob(p)
panels <- grep("panel", gt$layout$name)
top <- unique(gt$layout$t[panels])
gt <- gt[-(top[-1]-1), ]

gg <- gt$grobs      
strips <- grep("strip_t", names(gg))
labels <- levels(diamonds_l$cut)
for(ii in seq_along(labels))  {
  modgrob <- getGrob(gg[[strips[ii]]], "strip.text", 
                     grep=TRUE, global=TRUE)
  gg[[strips[ii]]]$children[[modgrob$name]] <- editGrob(modgrob,label=labels[ii])
}
gt$grobs <- gg
grid.newpage()
grid.draw(gt)

在此处输入图像描述

于 2015-06-24T12:12:29.927 回答