在尝试使用ioslides html演示文稿中的knitr绘制rgl 3d绘图时,我的RStudio会话正在破碎。有任何想法如何预防吗?
我的大块:
```{r setup, results='asis'}
library(knitr)
library(rgl)
knit_hooks$set(webgl = hook_webgl)
```
```{R, testgl, webgl=TRUE, cache=FALSE}
x <- sort(rnorm(1000))
y <- rnorm(1000)
z <- rnorm(1000) + atan2(x,y)
plot3d(x, y, z, col=rainbow(1000))
```
修改
此错误发生在:
> sessionInfo()
R version 3.2.1 (2015-06-18)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1
locale:
[1] LC_COLLATE=English_United Kingdom.1252 LC_CTYPE=English_United Kingdom.1252
[3] LC_MONETARY=English_United Kingdom.1252 LC_NUMERIC=C
[5] LC_TIME=English_United Kingdom.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] rsconnect_0.4.1.4 htmltools_0.2.6 tools_3.2.1 yaml_2.1.13 rmarkdown_0.7 digest_0.6.8
>
演示文稿的源代码可以在这里找到:
https://github.com/TARF/SMM/tree/master/Presentation
请注意,为了运行代码,需要通过具有自己凭据的Demography包连接到Human Mortality Database。
答案 0 :(得分:0)
您可能需要更新RStudio。我认为它崩溃了一段时间,我认为因为他们的WebGL实现不起作用;现在它运行正常(虽然它没有显示WebGL,我必须在浏览器中查看输出)。
几年后编辑:我很长时间没有看到崩溃,而rgl(通过调用rglwidget()显示)现在在RStudio中显示正常。