1

プロットを整理するために、cowplot の plot_grid コマンドを使用しています。私はラベリング機能を使用していますが、私のプロットはすべて同じように見えます。ただし、以下のように、y 軸の範囲が大きく異なるいくつかのプロットを「hv」整列すると、y の範囲が最も短いプロットの高さが使用されているように見えます。

カウプロット hv 整列からの滑らかなプロット

プロットを 'v' に揃えると、いくつかの点で見栄えが良くなりますが、プロットのサイズを変更してラベルの見栄えを良くするのは困難です。上記のように、プロットの高さがx軸ラベルなどを考慮しないことをお勧めします。

v 整列プロット

gtablesを使用すると、目的の幅/高さ (以下) を取得できますが、ドキュメント内のすべての図で一貫したラベルが得られません。カウプロットで「hv」配置を使用して、使用するプロットの高さを指定できますか?

素晴らしいプロット、ラベルなし

library(ggplot2)
library(dplyr)
library(scales)
library(grid)
library(cowplot)

data(iris)

iris <- iris %>% mutate(Petal.Width2 = ifelse(Species == "setosa", Petal.Width * 75, Petal.Width))

p1 <- ggplot(data=iris, aes(x = factor(Species), y=Sepal.Width)) + 
  geom_bar(stat="identity") +
  labs(x = NULL, y = "Plot One") +
  scale_y_continuous(labels = percent) +
  theme(axis.text.x = element_blank(), 
        axis.title.y = element_text(vjust=1), plot.margin=unit(c(2,2,0,2),"mm"))

p2 <- ggplot(data=iris, aes(x = factor(Species), y=Petal.Width2)) + geom_bar(stat="identity") +
  labs(x = NULL, y = "Plot Two") +
  scale_y_continuous(labels = percent) +
  theme(axis.text.x = element_blank(), 
        axis.title.y = element_text(vjust=1), plot.margin=unit(c(0,2,0,2),"mm"))
p3 <- ggplot(data=iris, aes(x = factor(Species), y=Petal.Length*0+.01)) + geom_bar(stat="identity") +
  labs(x = "SPECIES", y = "The Third plot") +
  scale_y_continuous(labels = percent) +
  theme( axis.title.y = element_text(vjust=1, color="blue"), plot.margin=unit(c(0,2,0,2),"mm"),
         axis.text.x = element_text(angle = 90, hjust=1, vjust=1,face ="italic", size=10))

plot_grid(p1,p2,p3,ncol=1, align="v", labels=c("A", "B", "C"))

# https://stackoverflow.com/a/27408589/1670053
plots <- list(p1, p2, p3)
grobs = lapply(plots, ggplotGrob)
g = do.call(rbind, c(grobs, size="first"))

g$widths = do.call(unit.pmax, lapply(grobs, "[[", "widths"))
grid.newpage()
grid.draw(g)
4

1 に答える 1

4

ラベルを追加するのは簡単です

plots <- list(p1, p2, p3)
grobs = lapply(plots, ggplotGrob)
library(gridExtra)
g = do.call(rbind, grobs) #  uses gridExtra::rbind.gtable
panels <- g$layout[g$layout$name=="panel",]

g <- gtable::gtable_add_grob(g, lapply(LETTERS[1:nrow(panels)],
                                       textGrob, vjust=1, y=1, 
                                       gp=gpar(fontface=2)), 
                             t=panels$t, l=2)

grid.newpage()
grid.draw(g)

ここに画像の説明を入力

于 2016-03-05T02:10:54.847 に答える