我已经深入研究了这个问题:我需要使用DPI = 1200和特定打印尺寸绘制图像。
默认情况下,png看起来不错......
png("test.png",width=3.25,height=3.25,units="in",res=1200)
par(mar=c(5,5,2,2),xaxs = "i",yaxs = "i",cex.axis=1.3,cex.lab=1.4)
plot(perf,avg="vertical",spread.estimate="stddev",col="black",lty=3, lwd=3)
dev.off()
但是当我应用这段代码时,图像变得非常糟糕,它不能缩放(适合)所需的大小。我错过了什么?如何将图像“拟合”到情节中?
,
答案 0 :(得分:54)
可重现的例子:
the_plot <- function()
{
x <- seq(0, 1, length.out = 100)
y <- pbeta(x, 1, 10)
plot(
x,
y,
xlab = "False Positive Rate",
ylab = "Average true positive rate",
type = "l"
)
}
James建议将pointsize
与各种cex
参数结合使用,可以产生合理的结果。
png(
"test.png",
width = 3.25,
height = 3.25,
units = "in",
res = 1200,
pointsize = 4
)
par(
mar = c(5, 5, 2, 2),
xaxs = "i",
yaxs = "i",
cex.axis = 2,
cex.lab = 2
)
the_plot()
dev.off()
当然,更好的解决方案是放弃使用基本图形的这种摆弄,并使用能够为您处理分辨率缩放的系统。例如,
library(ggplot2)
ggplot_alternative <- function()
{
the_data <- data.frame(
x <- seq(0, 1, length.out = 100),
y = pbeta(x, 1, 10)
)
ggplot(the_data, aes(x, y)) +
geom_line() +
xlab("False Positive Rate") +
ylab("Average true positive rate") +
coord_cartesian(0:1, 0:1)
}
ggsave(
"ggtest.png",
ggplot_alternative(),
width = 3.25,
height = 3.25,
dpi = 1200
)
答案 1 :(得分:1)
如果您想使用基本图形,可以查看this。提取物:
您可以使用p =的res =参数来更正此问题,该参数指定每英寸的像素数。此数字越小,以英寸为单位的绘图区域越大,文本相对于图形本身越小。