1

我正在尝试制作一张带有交互式图表的幻灯片。ggplotly 函数在控制台中工作,但不显示在降价块中 - 相应的幻灯片是空白的。正常的情节显示得很好。

---
title: "TEST"
author: "me"
date: "19 February 2020"
output:
  beamer_presentation: default
  ioslides_presentation: default
---

测试(工作)

library(plotly)
df = data.frame(a = c(1:3,1:10))
p = ggplot(df, aes(x=a))+ geom_bar()
p

测试2(不工作)

library(plotly)
df = data.frame(a = c(1:3,1:10))
p = ggplot(df, aes(x=a))+ geom_bar()
ggplotly(p)

4

1 回答 1

0

通过从 .html 文件而不是通过 RStudio 直接打开浏览器来修复

于 2020-02-23T18:17:30.203 回答