5

我用 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 图形的幻灯片,它的交互功能应该可以正常工作。可能吗?

4

1 回答 1

8

选项 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") 
```

在此处输入图像描述

于 2016-12-21T01:02:08.627 回答