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