Chapter 2 RMarkdown

2.1 About RMarkdown

RMarkdown is a file document that allows you to write, save and execute code, as well as text and figures to help generate reproducible reports that can be shared in several formats. The file extension is .rmd.
A markdown file has three main sections;

  1. YAML header
    This is where your document metadata go to e.g your document title, author, date, output file type etc. Theses parameters are set when opening a new .rmd or project file. And more can be set after. This section MUST always be at the beginning of your document and between a set of three dashes i.e three dashes before section and three dashes after section.

  2. Text
    Your narration/prose in markdown format. More details about formatting in subsequent sections.

  3. Code chunk(s)
    They start with ```{r}

    and end with ``` as in below screenshot

code chunk

To start using RMarkdown, install the following base packages using any of the methods described in the Installing packages section

(‘base64enc,’ ‘digest,’ ‘evaluate,’ ‘glue,’ ‘highr,’ ‘htmltools,’ ‘jquerylib,’ ‘jsonlite,’ ‘knitr,’ ‘magrittr,’ ‘markdown,’ ‘mime,’ ‘rmarkdown,’ ‘stringi,’ ‘stringr,’ ‘tinytex,’ ‘xfun,’ ‘yaml’)

2.2 Editing in markdown

2.2.1 Headers

To create headers for your reports/document e.g. chapters, sub-chapters and so on; use the hash sign ‘#’ in front of the title. Sequentially increase the number of “#’ signs to denote subsequent header levels.
Insert blank line before each header (except in the beginning of document).

headers

2.2.2 Bold and italic text

To create emphasis in your markdown texts, use an asterisk * before and after text to italicize or double asterisk ** to make your text bold.
Alternatively, you may use single underscore_ for italics or double underscore__ for bold.

text emphasis

2.2.3 Create Lists

2.2.3.1 Ordered list

Use numbers to order your list items. and a plus sign ‘+’ to create sub-items on your list.

ordered list

2.2.3.2 Unordered list

Use an asterisk ’*’ before list item to create an unordered list.
Use a plus ‘+’ sign for sub-items.
Use tab command or two spaces on your keyboard to indent the list items

unodered list

Note: Always leave anmempty line before starting a new list or use double space or tab on your key board at the end of the text line preceding the list

As shown in the 2 examples below

list1 or

list2

2.2.4 Manual line breaks

Use two or more spaces at the end of a line
to insert a line break

line break

2.2.6 Insert figures/images

To insert images to our document, we use the same syntax as links, but start with an exclamation mark’!’ before syntax. For an image from a url use; ![text to accompany your image e.g a caption](your https link)
or for an image file in your local directory use, ![your image text](path to local image file).
For instance, I downloaded the UN Climate logo and saved it as a .jpg in my working directory as exact name unfccc_logo.jpg
The following syntax will insert the logo into my document:
insert image

UN Climate logo

When inserting images from local file, it is strongly recommended to have the image in your working directory.

2.2.7 Insert block quotes

To insert a block quote within your text, use the greater than sign ‘>’ in the beginning of quote. The quote must begin on a new line, and remember to insert blank line before and after. For instance the screenshot below;

block quote

produces this:

This exercise may seem complicated at first, but trust me, it is not.
You will agree with me sooner than later :)

2.2.8 Insert code chunks

To write your code use open code chunk with three backticks and the curly brackets {insert your code language}, hit enter on your keyboard, insert your code and hit enter, close the code chunk with another three backticks.

insert code chunk

Alternatively, you may do it from top right corner of your script/source window as shown below. Click on the green +c icon and select R from the drop down list.

code chunk by click Code chunks for other languages may be added from this list as well.

2.2.9 Create tables

2.2.9.1 Option 1

Create table headers with dashed lines below the header title. Separate headers with tab or space between the headers and corresponding dashed lines.
Type in row values below the dashed lines. The row value length may exceed the dashed line length but MUST not extend into the next header’s dashed line.
Column alignment is based on the position of the header/column title relative to the dashed line below it.
To insert a caption or alt text to your table use, full colon ‘:’ followed by your caption text at the end of the table.
Alternatively, use ‘Table: your caption or text.’ The following syntax (screenshot) produces the ensuing table.

manual table

you may insert table caption here
Table: Alternative caption option
Header 1 Header 2 Header 3 Header 4
12343 895 0.5867891011 1
Name Rank score remark
Type 3 TRUE 12.1
Left align Right align Center Default

2.2.9.2 Option 2

You may also create simple tables using a knitr function called kable.
The code below tells r that we want to create a data set with 3 columns, X, Y & Z, assigning them the values enclosed in the letter c. The letter c used together with brackets indicates a list of elements. Thus, in the example below, we tell r that our column X, will contain a list of 4 elements i.e 20, 30, 10 & 50.
Then we tell r to create the data set by combining all the columns X, Y & Z into a data frame. Finally, we call the function kable and enter the data we created. This function converts our data frame into a table format.
Optionally, you may add a caption to the table and specify cell alignment.

kable table

Table 2.1: My first simple table with kable
X Y Z
20 1.4 yes
30 4.3 no
10 5.9 true
50 2.7 false

Note that our code chunk is labelled ‘kable.’ You can label code chunks as below

labled chunk

This will be useful for cross-referencing as we’ll see in the Chapter References section.

2.2.9.3 Option 3

You may also generate tables using Microsoft excel data, using the kablepackage or a lot more other packages not covered in this release.
Please refer to chapter 5 Working Excel data for details.

2.2.10 Page breaks

Use three or more asterisks or dashes to insert a page break.

page break

Remember to add a blank line before the asterisks or dashes

2.2.11 Process a markdown document to desired output

To create the desired output file document from the markdown format, use the function render ("your .rmd file name).
Alternatively,and most commonly used, is the Knit button from the markdown script environment. The button is a blue ball of yarn around a crotchet, and is labeled ‘Knit’ When a document is rendered, rmarkdown saves the results/output file into your working directory, giving it the same name as your .rmd file, but with relevant extension (e.g. as html if output type was set to html)

knit

2.2.12 References

2.2.12.1 Citations/Bibliography

To add citations to our document, we need to add our reference document details to a text file saved in the .bib format e.g myrefences.bib. We also need to add this file to our bibliography parameter in the yaml section of the index.rmd file.
The references for this exercise are saved in the file ‘book.bib.’
To add your reference documents to the .bib file, use the BibTeX citation style i.e

citations

Sites such as Google Scholar have ready to use/ formatted bibliography styles such as BibTeX, EndNote etc. You may copy-paste the BibTeX text into your .bib file in r.

You may have as many documents listed in the .bib file but rmarkdown will only include those that have been referenced within your markdown document.
To reference documents in your narrative and thus, have them included in the reference section, use the format [@documentname].
The references will appear at the end of the chapter where they are referenced, as well as in the overall ‘References’ section.

2.2.12.2 Chapter References

To reference chapter, type in the chapter title inside square brackets. For instance, this command references our second chapter named NAPdown.

chapter ref

The same applies to section headers. Just type [section header name].

2.2.12.3 Table & Figure References

To reference figures use syntax ‘@ref(fig:code chunk label)’ or’@ref(tab:code chunk label)’ for tables. For instance, we created our kable table in the code chunk named kable. To reference this table anywhere in our document, just type in command

Ref table

This will insert a reference link to the kable table.

2.2.13 Pandoc & Knitr

Pandoc is a universal document converter designed to convert thousands of markup languages. So when we create our document in markdown and want to output it as a pdf, pandoc does the work.
Knitr on the other hand, is an r package that enables the integration of yaml, text and code evaluations into an output document. Knitr contains the Knit function through which we render our rmarkdown documents to our desired output format. When you render a document in rmarkdown (or call the knit function), the rmarkdown document is converted to a basic markdown language (.md) which is then converted by pandoc to say html, pdf, word, etc as per user specifications. Knitr and pandoc come in bundled with rmarkdown, and thus, there is no need to install them separately.
However, should you need to install pandoc as standalone, you may do so from the Pandoc homepage. In this regard, it is important to note that in as much as standalone installations may provide much higher versions of the software than what is already bundled in r, they are often not streamlined for use in r, and may thus cause some compatibility issues.