An authoring framework for data science
University of Münster
2025-10-30
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.```{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 additional messages given by a function.warning = FALSE exclude warnings created by a function.Some possible parameters:
Jürgen Wilbert - Introduction to R