首页 > 解决方案 > R 将绘图保存在 png 中,但不保存在 pdf 中

问题描述

我正在尝试将玩具图保存在文件中。它适用于png,但不适用于pdf。pdf只是空的。

width =  1144
height = 995

png("deleteme.png", width = width, height = height)
op=par(mar = c(0, 0, 0, 0))
plot(c(0, width), c(0, height), type = "n", xlab = "", ylab = "",xaxs = "i",yaxs = "i")
lines(c(1,2,3,4)*100, c(3,2,3,5)*100)
dev.off()

pdf("deleteme.pdf", width = width, height = height)
op=par(mar = c(0, 0, 0, 0))
plot(c(0, width), c(0, height), type = "n", xlab = "", ylab = "",xaxs = "i",yaxs = "i")
lines(c(1,2,3,4)*100, c(3,2,3,5)*100)
dev.off()

这是png:在此处输入图像描述

这是pdf:http ://docdro.id/wG9xx3J

pdf 显示 chrome 中的行,但不在 Acrobat 中!

标签: rpdfacrobat

解决方案


推荐阅读