R Presentation中的互动图

时间:2019-07-24 19:33:26

标签: r plotly rpres

我想在我的Rpres文档中包括交互式图解。我之前在ioslides中加入了互动情节,但是对Rpres却没有运气。

MWE:

test
========================================================
author: 
date: 
autosize: true

Slide
========================================================

```{r echo = F}
library(plotly)

df <- data.frame(a = c( 1:10), b = c(1:10))

plot_ly(df, x = ~a, y = ~b) %>%
  add_markers()

```

不幸的是,将其编织为HTML时,只能生成静态图像:

enter image description here

我尝试将代码块中的results =调整为无效。有什么方法可以将交互式绘图合并到Rpres文档中?

0 个答案:

没有答案