gpt4 book ai didi

r - 提高 RStudio 图形设备的质量(预览)

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

使用 RStudio 时,可以在“绘图” Pane 或内置查看器中检查绘图。但是,我注意到与保存的绘图相比,这些预览 的质量更差。显然可以导出或保存图像,不乏方法(pdf()png()ggsave()、等)。

iris为例,下面的截图产生如下图

library(tidyverse)
p.iris = iris %>%
ggplot(aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point() +
geom_smooth(method = "lm", se = FALSE)

p.iris

Screenshot of Rstudio plot preview

与相同情节的已保存版本相比,具有较高的 DPI。

ggsave(plot = p.iris, filename = "Example.png", dpi = 320)

虽然差异很细微,例如geom_smooth 中的线条更清晰。 Saved version of the same plot

如果检查绘图预览,您可以看到该绘图已保存到 .png

<img id="img" width="100%" height="100%" style="display: inline;" 
src="http://127.0.0.1:35473/graphics/c3c6aa95-f458-477e-af54-f443f93ad673.png">

假设我不介意使用额外的资源或时间来渲染质量更好的预览 - 我应该调整哪些设置?

最佳答案

您可以安装 RStudio >= v1.4 和软件包 {ragg},然后将图形设备后端设置为 AGG,如所述 here .

enter image description here

这应该可以提高预览质量。

请注意,此问题取决于平台。我的 Windows 机器上的预览质量同样很差,而我的 Mac 上没有这样的问题(即使没有 {ragg})。

关于r - 提高 RStudio 图形设备的质量(预览),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66410305/

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