作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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/
我是一名优秀的程序员,十分优秀!