I want to use data from my shiny app as params in Rmarkdown. How can I get my data and use it. Here is my app:
library(shiny)
library(readxl)
dat2 <-read_xlsx("data/iepp_18.xlsx")
shinyApp(    
    ui = fluidPage(
        selectInput("Ecole","Ecole", as.character(sort(unique(dat2$Nom_Ecole)))),
        downloadButton("report", "Generate report")
    ),
    server = function(input, output) {
        output$report <- downloadHandler(
            filename = "report.html",
            content = function(file) {
                tempReport <- file.path(tempdir(), "Reports.Rmd")
                file.copy("Reports.Rmd", tempReport, overwrite = TRUE)
                params <- list(base = input$Ecole)
                rmarkdown::render(tempReport, output_file = file,
                                  params = params,
                                  envir = new.env(parent = globalenv())
                )
            }
        )
    }
)
And here is my Rmd yaml
title: "Dynamic report"
output: html_document
params:
  base: NA
Is it not possible to subset the data in my Rmd with params$base?
``` r
 data_bulletin %>%
    filter(identification_nom_etablissement==params$base) 
```
Is it not possible to subset with params? Is it possible to use data from my shiny app in Rmarkdown?
 
    