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に出くわしましたが、問題は解決しませんでした