Basics of RMarkdown

What is RMarkdown?

Why use RMarkdown?

Rmarkdown documents combine the analytical power of R and the utility of a text-processor. We can have one document which contains all of our analysis as well as our written text, and can be compiled into a nicely formatted report. This saves us doing analysis in R and copying results across to Microsoft Word. It ensures our report accurately reflects our analysis. Everything that you’re reading now has all been written in Rmarkdown!

The fundamental idea of RMarkdown is to be able to write normal text interspersed with “code-chunks” (i.e., chunks of code!). With RMarkdown documents we are able to see and edit the code along with specifying formatting of our text. We then compile our document into a nice file (e.g. a .pdf file or a .html file) which formats our text and shows/hides code and output according to what we have specified. You can see an RMarkdown workflow in Figure 1

Getting Started

First things first, we need to open an RMarkdown document.

In the top menu bar, click on File > New File > RMarkdown
A dialgue box will pop-up

Creating a new RMarkdown doc

yaml

The bit between three dashes is the `YAML`, and contains metadata about the document

Figure 2: The bit between three dashes is the YAML, and contains metadata about the document

The bit at the top of your document between the three dashes --- is the “metadata”. This is the information about your document. Things like the title, author, output format (html/pdf). For now, we can leave it as it is, but there are lots and lots of features you can exploit via the yaml, such as including stylesheets for html (which is how we set the colours/fonts etc in these pages), to setting custom parameters which enable you to bulk create multiple reports for different values (e.g. a different report on each country in a list). We won’t cover this sort of stuff in this course as it is not so useful for producing scientific reports, but once you are an RMarkdown pro, if you get interested in this sort of thing there is lots of info at https://bookdown.org/yihui/rmarkdown/params-knit.html.

We will come back to editing the yaml a little bit in Lesson 7, but for now we can leave it as it is, having been automatically generated based on the author and title we gave the little pop-up box.

Remove the template text

When you open a new RMarkdown document, it opens a template for you, to help with learning how to use it. Read through the template, and follow along with the video to delete all of it - we want to start fresh:

Removing the template

Text and Code-Chunks

Writing Text

As mentioned, RMarkdown is a format in which we can write both code and text. It has lots of useful advantages - you can write in such a way that if your data or analysis changes, then your results, plots and tables will automatically update to reflect these changes.

Writing text involves formatting your words in plain-text “markdown”. There are a few rules to get to grips with, but it is fairly straightforward to start typing your paragraph in your document:

  • We use the # symbol to denote a section heading (with ## being a subsection, and ### being subsubsection, and so on.)
  • Bold text is made by wrapping a sentence in two asterisks **, or two underscores __
  • italic text is made by wrapping it in one * or _.

Adding Code-Chunks

As shown in Figure 4, We include code-chunks by using three backticks ``` followed by squiggly brackets with “r” in them {r}, to specify in the document that this is R code (we can actually also include other programming languages!). We then end the code chunk with three backticks again. Everything between these backticks will get evaluated as a chunk of R code, and things outside these chunks will be considered text.

This is a code-chunk

Figure 4: This is a code-chunk

There are a couple of short cuts for adding a new code-chunk. Either of the options below will create a code-chunk wherever your cursor is in the document at that time.

  1. At the top-right of your document, there will be a set of icons. One of these is a little “c” inside a box with a plus in the corner. Click this and choose R from the menu.

  2. Type Ctrl+Alt+i on your keyboard ( Cmd+Opt+i for Mac).
Writing text
Adding code-chunks

Running Code

There are various ways you can send code from your RMarkdown document to the console to be evaluated.

Running code chunks

Figure 5: Running code chunks

Running the line of code under the cursor

As with an R Script, when your cursor is on a line of R code, you can type Ctrl+Enter ( Cmd+Enter for Mac users) to evaluate that line of code. The cursor will automatically move down to the next line of code, so you can keep pressing your keyboard to run lines sequentially. Alternatively, in the top-right of your document you can press the run icon and choose to run the selected line.

Running a line of code

You can also highlight lines to run them together.

Running a chunk of code

The little green arrow at the top right of the code-chunk allows you to run that whole code-chunk.

Running current code-chunk

Running all code-chunks above the current code-chunk

The little downwards arrow enables you to run all the code-chunks above that code-chunk. This is useful to do a quick refresh of your analysis process up to that point.

Running code-chunks above

Saving progress

Don’t forget to save your document!!

Saving your file