I'm creating an HTML output from a .R script with the command rmarkdown::render(input = "my_script.R"). It calls knitr::spin() and successfully produces an HTML output. In that .R file, there is a filtering variable school_level whose value I want to control from the call to render().
I know for an RMarkdown file I'd specify a parameter in the YAML header. But how do I do that for a .R script? I'm not seeing it in guides like the RMarkdown Cookbook.
Say the line I want to modify in my .R script is:
good_data <- my_data %>%
filter(level == school_lvl)
What do I change in my .R script to control the value of school_lvl from the call to rmarkdown::render? Making the value of school_lvl be "Elementary" or "Secondary".
If you want to pass some parameters from the
paramsargument ofrmarkdown::render()function toknitr, it's a bit complicated as theknitr::spin()function overrides parameters. You can specify a commented header in your R script (as seen in the documentation), with empty parameter value, e.g.test.R:Then you can call: