I have a brilliant app hosted on shinyapps.io. I embed this in the html RMarkdown file using:
```{r}
knitr::include_app("shiny app web address")
```
This works, and I successfully see the built-in brilliant application, but I cannot adjust the width. include_app () has the ability to adjust the height, but I can not find an option to adjust the imframe width.
I tried this:
```{r}
knitr::opts_chunk$set(fig.width=16, fig.height=8)
knitr::include_app("shiny app web address")
```
But the width and height of the application are not configurable.
Does anyone have any ideas on adjusting the width of this embedded application?
Thanks for the help.
Edit: I also tried this: {r fig.width=16, fig.height=8}
no luck. Any ideas?
source
share