I am learning RPres
and so far I really like it. Now I would like to insert an RShiny
App in my presentation. I read the instructions for inserting Shiny in RMarkdown and tried to apply a similar approach in RPres
:
# A Shiny App in RPres?
========================================================
```{r, echo = FALSE}
library(shiny)
shinyAppDir(
system.file("examples/06_tabsets", package="shiny"),
options=list(
width="100%", height=700
)
)
```
Which then gives the error:
Error in appshot.shiny.appobj(list(httpHandler = function (req) :
appshot of Shiny app objects is not yet supported.
I can't find any good documentation for RPres and Shiny.Is this even possible? Is there a workaround, like generating something from RMarkdown that could then be inserted in RPres?