gpt4 book ai didi

r - 使用 R Kernel 从 jupyter notebook 将绘图保存为 JPEG 或 PDF

转载 作者:行者123 更新时间:2023-12-05 05:06:09 26 4
gpt4 key购买 nike

我在将图表从 Jupyter Notebook 的 R 内核保存为 jpeg 或 pdf 格式时遇到了问题。

这是代码,

pdf("Hatdog.jpeg")
plot(x,y, col="green")
dev.off()

我想知道为什么图像已损坏,当我尝试打开实际文件时,它指出看起来我们不支持这种文件格式。

enter image description here

有人遇到同样的问题吗?你是怎么解决的?谢谢。

最佳答案

您正在保存扩展名为 -.jpg 的 pdf 文件?另存为 jpeg:

# 1. Open jpeg file
jpeg("rplot.jpg", width = 350, height = 350)
# 2. Create the plot
plot(x = my_data$wt, y = my_data$mpg,
pch = 16, frame = FALSE,
xlab = "wt", ylab = "mpg", col = "#2E9FDF")
# 3. Close the file
dev.off()

保存为pdf:

# Open a pdf file
pdf("rplot.pdf")
# 2. Create a plot
plot(x = my_data$wt, y = my_data$mpg,
pch = 16, frame = FALSE,
xlab = "wt", ylab = "mpg", col = "#2E9FDF")
# Close the pdf file
dev.off()

(来自 http://www.sthda.com/english/wiki/creating-and-saving-graphs-r-base-graphs)

关于r - 使用 R Kernel 从 jupyter notebook 将绘图保存为 JPEG 或 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60108102/

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