ggvis 正在使用 Shiny Documents 吗?
在此示例中,ggplot 可见,但 ggvis 不可见
---
title: "testShiny"
runtime: shiny
output: html_document
---
ggplot2
```{r, echo=FALSE}
require(ggplot2)
renderPlot({
ggplot(women, aes(height, weight))+
geom_point()+
theme_bw()
})
```
ggvis
```{r, echo=FALSE}
require(ggvis)
renderPlot({
women %>%
ggvis(x= ~height, y = ~weight) %>%
layer_points()
})
```
在搜索时我遇到了bind_shiny,但它并没有解决问题