Insert picture/table in R Markdown [closed]

Several sites provide reasonable cheat sheets or HOWTOs for tables and images. Top on my list are: Pandoc readme, specifically tables RStudio’s RMarkdown, more details in basics (including tables) and a rewrite of pandoc’s markdown. Pictures are very simple to use but do not offer the ability to adjust the image to fit the page … Read more

YAML current date in rmarkdown

This is a little bit tricky, but you just need to make the date field valid in YAML by quoting the inline R expression, e.g. date: “`r format(Sys.time(), ‘%d %B, %Y’)`” Then the parsing error will be gone, and the date will be generated in the markdown output so Pandoc can use the value from … Read more