我想创建一个 pdf 文件并使用 package 在其中放置几个图ggplot2
。但是,我需要减少一个特定绘图的宽度。这是代码:
invisible(pdf("foo.pdf"))
foo <- data.frame(x=rnorm(100), y=rnorm(100), class=factor(sample(2,1000,T)))
ggplot(foo, aes(x=x,y=y))+geom_point() # first plot
# For next plot I want to reduce the width
ggplot(foo, aes(x=class,y=y)) + geom_boxplot()
invisible(dev.off())
怎么做?