我想在exams2html()
和exams2moodle
生成的考试中添加更多html。但是如果我尝试例如
```
library(ggplot2)
library(plotly)
ggplotly(
ggplot(iris, aes(Sepal.Length, Petal.Length)) + geom_jitter()
)
```
exams2html()
仅包含{webshot}
生成的图像(我认为)。
是否可以在考试工作流程中指定一些解决此问题的knitr选项?
修改
这是将情节图集成到.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)
```