Skip to content
Snippets Groups Projects
Commit 54426574 authored by Bartke, Simon's avatar Bartke, Simon
Browse files

Added YAML formatting options.

parent 62c81bd8
No related branches found
No related tags found
No related merge requests found
......@@ -5,9 +5,13 @@ date: "16 6 2022"
output:
html_document:
keep_md: true
toc: true
toc_float: true
numbered: true
theme: journal
---
```{r setup, include=FALSE}
```{r setup, include=TRUE}
knitr::opts_chunk$set(echo = TRUE)
```
......@@ -25,7 +29,7 @@ summary(cars)
You can also embed plots, for example:
```{r pressure, echo=FALSE}
```{r pressure, echo=TRUE}
plot(pressure)
```
......
This diff is collapsed.
......@@ -5,9 +5,16 @@ date: "16 6 2022"
output:
html_document:
keep_md: true
toc: true
toc_float: true
numbered: true
theme: journal
---
```r
knitr::opts_chunk$set(echo = TRUE)
```
## R Markdown
......@@ -34,6 +41,11 @@ summary(cars)
You can also embed plots, for example:
```r
plot(pressure)
```
![](ps1_loesungen_files/figure-html/pressure-1.png)<!-- -->
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment