我很高兴在帖子“为 facet_grid 图的所有方面强制启用 X 轴文本”中找到解决我问题的大部分内容。
我想创建一个看起来有点像 OP Drew Steen 的图表,除了我有超过两行的刻面,我想让每行的 x 轴标签不同。
我根据@baptiste 的精彩回答做了一个超级hacky 的解决方案(主要是因为我不熟悉 gtable 包),我想知道:
- 如果有比我在下面写的混乱更优雅的解决方案
- 如何为“Premium”(中间)行插入标签。
这是我改编自@Drew Steen 和@baptiste 的代码,
library(ggplot2)
diamondSub <-subset(diamonds, (cut=="Ideal" | cut=="Premium" | cut == "Very Good") & (color=="E" | color=="I"))
p<- ggplot(diamondSub, aes(x=carat, y=price)) +
geom_blank()+
geom_point() +
scale_x_discrete(breaks=c(1, 2, 3, 4), labels=c("a", "b", "c", "d")) +
facet_grid(cut~color, scales="free_x")
p
p2<- ggplot(diamondSub, aes(x=carat, y=price)) +
geom_blank()+
geom_point() +
scale_x_discrete(breaks=c(1, 2, 3, 4), labels=c("f", "g", "h", "i")) +
facet_grid(cut~color, scales="free_x")
p2
library(gtable)
g <- ggplotGrob(p)
g2 <- ggplotGrob(p2)
# locate the panels
panels <- grep("panel", g$layout$name)
panels2 <- grep("panel", g2$layout$name)
top <- unique(g$layout$t[panels])
top2 <- unique(g2$layout$t[panels2])
# intersperse a copy of the bottom axes
all <- gtable:::rbind_gtable(gtable:::rbind_gtable(g[seq.int(min(top)), ],
g[max(top)+1,], "first"),
g2[seq(min(top2)+1, nrow(g2)),], "first")
grid.newpage()
grid.draw(all)