gpt4 book ai didi

r - 文件错误(con, "rb"): cannot open the connection when generating a plot in a presentation with plotly

转载 作者:行者123 更新时间:2023-12-04 09:41:15 25 4
gpt4 key购买 nike

我正在使用 R 3.3.3 并且我正在处理 R 演示文稿,试图用 plotly 绘制 ggplot 图。我在 R markdown 文件中的块代码是:

```{r plot, echo=FALSE, message=TRUE, warning=TRUE}

G <- ggplot(data=gender_gap, aes(x=value_girls, y=value_boys, color=gender_gap))+ geom_point()+ geom_text(label=gender_gap$LOCATION, hjust=1, vjust=1, size=4)+ geom_abline(intercept = 0, slope = 1)

ggplotly(G)
```

该图很好地打印在查看器中,但在幻灯片中我收到以下消息:

"Error in file(con, "rb") : cannot open the connection"



在此先感谢您的明智建议!

最佳答案

我也有同样的问题,但下面的代码解决了我的问题。

```{r}
library(plotly)
set.seed(100)
d <- diamonds[sample(nrow(diamonds), 1000), ]
p=plot_ly(d, x = ~carat, y = ~price, color = ~carat,
size = ~carat, text = ~paste("Clarity: ", clarity))
htmlwidgets::saveWidget(as.widget(p), file = "demo.html")
```
<iframe src="demo.html" style="position:absolute;height:100%;width:100%"></iframe>

关于r - 文件错误(con, "rb"): cannot open the connection when generating a plot in a presentation with plotly,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41187823/

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