Rmarkdown : 嵌入 html 文件到 ioslides

Rmarkdown : embed html file to ioslides

我用 plotly 制作交互式图表,并将它们保存为 html 页。我是 ioslides 和 Rmarkdown 的新手,所以我通过互联网搜索,没有找到解决方案。我想在我的幻灯片中包含一个带有 .html 扩展名的绘图。所以我尝试了:

---
title: "Advanced Physics Project"
author: "mcandar"
output: 
  ioslides_presentation:
    widescreen: true
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```

## Introduction
![my graph](myfile.html)

而且它不起作用。我想要的是一张幻灯片,里面嵌入了我的 html 图形,它的交互功能应该可以正常工作。可能吗?

选项 1:使用 iframe:

---
title: "Advanced Physics Project"
author: "mcandar"
output: 
  ioslides_presentation:
    widescreen: true
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```

<iframe src="myfile.html"></iframe>

选项 2:包含 HTML

```{r}
shiny::includeHTML("myfile.html") 
```