You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to suggest that in the docs available in the Rmarkdown book you include two examples in chapter 15 (parameterized reports):
passing parameters as raw markdown text for the parameterized reports.
setting the title using a parameter
This information is available in other parts of the book, but I think including them there would make easier for other people starting to create report templates.
and something as such for the script that renders it:
rmarkdown::render(
path_to_file,
params=list(
set_title='title',
author='author',
obs='This is a text with *markdown* syntax.',
),
output_file='my_report.html')
)
The text was updated successfully, but these errors were encountered:
This is not an issue, but a recommendation.
I would like to suggest that in the docs available in the Rmarkdown book you include two examples in chapter 15 (parameterized reports):
This information is available in other parts of the book, but I think including them there would make easier for other people starting to create report templates.
For example, something as such in the
.Rmd
file:and something as such for the script that renders it:
The text was updated successfully, but these errors were encountered: