- You know what mardown is.
- You know what you can do with Rmarkdown.
- You can create your own Rmarkdown files.
Version: 26 May 2020
- arrow keys: move through slides
- f: toggle full-screen
Before we go on, you have to start your first Rmarkdown document:
#
symbol:# A level one header ## A level two header ### A level three header #### A level four header
*
symbols (or _
).**
symbols.***
symbols.This is *italic* this is **bold**, and ***this is both!!!***.
This is italic this is bold, and this is both!!!.
An unordered list: - Helmut - Gerhard - Angela An ordered list: 1. Bush 2. Obama 3. Trump Combined: 1. Sour - Lime - Envy 2. Sweet - Honey - love
Chunks
are portions of R code within a markdown file.```{r}
# Here comes the R code
```
Insert
button.e.g.:
```{r echo = FALSE}
# Here comes the R code
```
echo = FALSE
suppresses the inclusion of the original R code and only output is reported.include = FALSE
executes the R code but does not report anythingmessage = FALSE
excludes addidtional messages given by a function.warning = FALSE
exclude warnings created by a function.--- ---
Some possible parameters: