作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 R ggplot 代码:
require(ggplot2)
require(ggthemes)
df <- data.frame(x=1:10, y=5*(1:10))
p <- ggplot(df, aes(x,y)) +
geom_point() +
theme_few() +
theme(plot.background = element_rect(fill='transparent', colour=NA), legend.position='top')
pdf('test.pdf', width=5, height=2)
plot(p)
plot(ggplot_gtable(ggplot_build(p)))
但我确实得到了两个不同的数字:
我喜欢第一个图(即面板区域之外没有背景网格)。但是,我还需要使用 ggplot_build() 进行一些其他处理。你能帮忙吗?
最佳答案
您可以复制 ggplot2::print.ggplot
做得更直接。这似乎有效。
pdf('test.pdf', width=5, height=2)
plot(p)
grid::grid.newpage()
grid::grid.draw(ggplot_gtable(ggplot_build(p)))
dev.off()
关于r - 当绘图背景透明时,plot(p)和plot(ggplot_gtable(ggplot_build(p)))似乎没有给出相同的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48066550/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 7年前关闭。 Improve this qu
我正在通过更改 ggplot_build 生成的数据来修改使用 ggplot 构建的图形(原因类似于 Include space for missing factor level used in fi
我有以下 R ggplot 代码: require(ggplot2) require(ggthemes) df <- data.frame(x=1:10, y=5*(1:10)) p <- ggplo
我是一名优秀的程序员,十分优秀!