我想在exams2html()
and生成的考试中有更多的 html exams2moodle
。但是,如果我尝试例如包含一个情节情节
```
library(ggplot2)
library(plotly)
ggplotly(
ggplot(iris, aes(Sepal.Length, Petal.Length)) + geom_jitter()
)
```
exams2html()
仅包含由{webshot}
(我认为)生成的图像。
是否可以在考试工作流程中指定一些 knitr 选项来解决这个问题?
编辑:
这是一个将 plotly-plots 集成到 .Rmd 文件中的最小示例:
---
title: "Plotly to html within RMarkdown"
output: html_document
---
## Minimal Example
You can integrate `plotly` plots seamlessly into .html-files generated via knitr from .Rmd:
```{r}
library(plotly)
plot_ly(economics, x = ~date, y = ~unemploy / pop)
```