gpt4 book ai didi

r - 如何在 R 中将绘图保存为黑白(无灰色像素)图像?

转载 作者:行者123 更新时间:2023-12-01 08:26:02 24 4
gpt4 key购买 nike

我正在生成一些应该只有前景色和背景色的测试图像。我使用 ggplot2 创建了绘图,并使用 jpeg()png() 方法保存了它们。但我意识到输出不是黑白的。您可以在下面看到示例图像和问题。

A sample image

[示例图片]

The image showing the issue

[放大以显示非黑白输出]

如何将这样的情节保存为黑白图像? (我更喜欢坚持使用 JPEG 格式。)

最佳答案

您可以使用选项 antialias = "none"。例如

library(ggplot2)
library(cowplot)
png(antialias = "none")
ggplot(data.frame(x=1:100, y=sin((1:100/10))), aes(x,y)) +
geom_line()
dev.off()

enter image description here

关于r - 如何在 R 中将绘图保存为黑白(无灰色像素)图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50126517/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com