One of the really great, powerful things about R Markdown is that we can convert it to many different output types. The top three that you might be most likely to use are HTML, PDF, and Microsoft Word. There are others that we can discuss later.
In this section, we are going to briefly discuss how to render to these output formats, and some things that you might want to do for each of them.
Here are three ways to do this:
You might notice that depending on the option you select, this changes things in the YAML - which is another way to control which output you have:
title: "Exploring gapminder"
output: html_document
title: "Exploring gapminder"
output: pdf_document
title: "Exploring gapminder"
output: word_document
And if we remember from the previous lesson, the information in the YAML is passed into the render
function:
render
function.rmarkdown::render("example.Rmd", output_format = "html_document")
rmarkdown::render("example.Rmd", output_format = "pdf_document")
rmarkdown::render("example.Rmd", output_format = "word_document")
It can be easy to get caught up with how your document looks. I highly recommend avoiding compiling to PDF or Word until you really need to. This is also recommended by the author of rmarkdown and knitr, Yihui Xie. Because HTML doesn’t have page breaks, this means that you can spend time working on generating content, and not trying to get figures to line up correctly.
tinytex
.