在moodle和html考试中允许更多html

时间:2017-11-02 05:36:39

标签: r r-exams

我想在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)
```

0 个答案:

没有答案