gpt4 book ai didi

r - 如何从高质量的绘图中将绘图导出为静态图像?

转载 作者:行者123 更新时间:2023-12-05 03:22:37 24 4
gpt4 key购买 nike

对于可视化部分,我使用 ggplotly,然后将我的 markdown 文件编织成 HTML。接下来,当我想从绘图输出中下载静态图像时,PNG 文件的质量非常低。所以,我想知道是否有办法提高 plotly 中可下载静态图像的质量?

enter image description here

最佳答案

您可以在创建 Plotly 对象时修改模式栏。 (您也可以稍后添加更改。)您可以看到有关 modebar here 的更多选项。 .

例如:

library(plotly)
data(gapminder, package = "gapminder")

plot_ly(data = gapminder, x = ~continent, y = ~lifeExp,
type = "bar") %>%
config(
toImageButtonOptions = list(
format = "svg",
filename = "myplot",
width = 600,
height = 700
)
)

关于r - 如何从高质量的绘图中将绘图导出为静态图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72680199/

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