我用巧妙的方式制作互动情节,并将它们保存为html页面。我对ioslides和Rmarkdown很陌生,所以我在网上搜索,没有找到解决办法。我希望在幻灯片中包含一个具有.html扩展的图形。所以我试着:
---
title: "Advanced Physics Project"
author: "mcandar"
output:
ioslides_presentation:
widescreen: true
---
```{r setup, include=FALSE}Knitr::opts_chunk$set(回声=假)
## Introduction


但它不起作用。我想要的是一张幻灯片,里面嵌入了html图形,它的交互功能应该能正常工作。有可能吗?
发布于 2016-12-21 01:02:08
伊夫拉梅选项1:使用
---
title: "Advanced Physics Project"
author: "mcandar"
output:
ioslides_presentation:
widescreen: true
---
```{r setup, include=FALSE}Knitr::opts_chunk$set(回声=假)
<iframe src="myfile.html"></iframe>选项2: includeHTML
```{r}包含shiny(“myfile.html”)

https://stackoverflow.com/questions/41236864
复制相似问题