我正在尝试制作一张带有交互式图表的幻灯片。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)