An authoring framework for data science
University of Münster
2026-01-29
A text like this:
# Chaper 1
> If something is true, no amount of wishful thinking will change it *-Richard Dawkins*
We will discuss the following ideas:
1. The meaning of **life**
2. The end of **suffering**
3. The **noble eightfold path**
| Sanskrit| Meaning |
|---------|-------------------------------------------------------------------|
| dukkha | suffering is an innate characteristic of existence. |
| samudaya| together with *dukkha* arises *taṇhā* (craving). |
| nirodha | *dukkha* can be ended or contained by letting go of this *taṇhā.* |
| magga | The *noble eightfold path* leads to the confinement. |
Tabel 1: [The four noble truths](https://en.wikipedia.org/wiki/Four_Noble_Truths)
Before we go on, you have to start your first Rmarkdown document:
# symbol:* symbols (or _).** symbols.*** symbols.This is *italic* this is **bold**, and ***this is both!!!***.
This is italic this is bold, and this is both!!!.
Chunks are portions of R code within a markdown file.#| and each option in set in a separate line.e.g.:
```{r}
#| echo: false
#| include: 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 additional messages given by a function.warning: false exclude warnings created by a function.Some possible parameters:
Create a Quarto document with a “meaningful” header:
Add the example markdown code from above: Markdown
Render the document
Jürgen Wilbert - Introduction to R