在以下最小示例中使用{rgl}
单文件 bookdown-documents 中的输出非常有效:
---
output: bookdown::html_document2
---
Here's the figure:
```{r webgl=TRUE}
library(knitr)
library(rgl)
knit_hooks$set(webgl = hook_webgl)
with(iris, plot3d(Sepal.Length, Sepal.Width, Petal.Length,
type="s", col=as.numeric(Species)))
```
但是,当在官方最小示例中使用相同的代码时,旋转无法正常工作......