Updated question to incorporate a partial solution already answered on SO
I am using ggplot2
to create several plots and gridExtra
to combine the plots into one figure with several panels, all in one column. My problem is that I can't get the space between the dot plot rows to be consistent in both plots.
library(ggplot2)
# data
dat1 <- data.frame(VARIABLES=c("Item 1", "Item 2 is a little longer"),
est=c(.3, .5),
min=c(.2, .4),
max=c(.4, .7))
dat2 <- data.frame(VARIABLES=c("Item 3",
"Item 4 is even longer if you can believe it",
"And there is a third item",
"And a fourth item"),
est=c(.3, .5, .3, .5),
min=c(.2, .4, .2, .4),
max=c(.4, .7, .4, .7))
dat <- c("dat1", "dat2")
labs <- c("Plot 1", "Plot2")
# create plots
count <- 1
for (i in dat) {
p <- ggplot(get(i), aes(x=reorder(as.character(VARIABLES), est),
y=est)) +
geom_pointrange(aes(ymin=min,
ymax=max),
linetype="dashed") +
geom_point(size=3) +
ylim(-1,1) +
theme_bw() +
labs(title = labs[count]) +
theme(legend.position="none") +
coord_flip()
assign(paste(i, "plot", sep="."), p)
count <- count+1
}
# combine plots
library(gridExtra)
# approach suggested by @baptise
# http://stackoverflow.com/questions/13294952/left-align-two-graph-edges-ggplot
gA <- ggplotGrob(dat1.plot)
gB <- ggplotGrob(dat2.plot)
maxWidth = grid::unit.pmax(gA$widths[2:5], gB$widths[2:5])
gA$widths[2:5] <- as.list(maxWidth)
gB$widths[2:5] <- as.list(maxWidth)
grid.arrange(gA, gB, ncol=1)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…