Is there a way to insert (and evaluate) an RMarkdown script in a shiny application. (Note, I am not looking for a shiny application in RMarkdown that is explained here, nor am I looking for Markdown scripts in shiny (see Shiny Gallery Markdown))
I am building an application that has text, equations, code-chunks, plots, and interactive elements. For convenience I use Markdown files for the text and equations and would like to have a plot sometimes in between (i.e. write most stuff in RMarkdown). As the shiny-app is more complex (I use shinydashboard
including many of its unique features), I would prefer an option that does not use the approach described in the first link.
A minimum working example would be:
R-file:
library(shiny)
ui <- shinyUI(
fluidPage(
includeMarkdown("RMarkdownFile.rmd")
)
)
server <- function(input, output) {}
shinyApp(ui, server)
and "RMarkdownFile.rmd" in the same folder:
This is a text
$$ E(x) = 0 $$
```{r, eval = T}
plot(rnorm(100))
```
What I want to have is the output if I knit the rmd
-file:
Specifically, I want to get the evaluation of the code-chunks (plot something...), and I want to get the rendered math equations.
Any ideas?
Thanks to the input of @Bunk, I chose to render all rmd
files to md
files with the command knit
and then include the md
files in the shiny app (I use markdown instead of html as the latter produced some issues with equations). Lastly, the includeMarkdown
is wrapped in withMathJax
to ensure the proper display of equations.
The final code looks like this:
library(shiny)
library(knitr)
rmdfiles <- c("RMarkdownFile.rmd")
sapply(rmdfiles, knit, quiet = T)
ui <- shinyUI(
fluidPage(
withMathJax(includeMarkdown("RMarkdownFile.md"))
)
)
server <- function(input, output) { }
shinyApp(ui, server)
I think knitting it and rendering a UI should work.
library(shiny)
library(knitr)
ui <- shinyUI(
fluidPage(
uiOutput('markdown')
)
)
server <- function(input, output) {
output$markdown <- renderUI({
HTML(markdown::markdownToHTML(knit('RMarkdownFile.rmd', quiet = TRUE)))
})
}
shinyApp(ui, server)