Skip to content
Snippets Groups Projects
Commit 189992d7 authored by Gröbner, Lukas's avatar Gröbner, Lukas
Browse files

Commit to Gitlab with new code chunks

parent cc005a9a
No related branches found
No related tags found
No related merge requests found
......@@ -8,11 +8,34 @@ output:
toc: true
toc_float: true
number_sections: true
theme: journal
---
```{r setup, include=FALSE}
# Header1
## Header2
### Header3
* Item 1
* Item 2
+ Item 2a
+ Item 2b
This is text, but always remember that
a new line requires at least two empty spaces before shift.
```{r setup, include=TRUE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r, echo=TRUE}
vettoreA <- c(1,2,3)
vettoreB <- c(1,3,6)
vettoreA/vettoreB
```
## R Markdown
......
This diff is collapsed.
......@@ -8,8 +8,39 @@ output:
toc: true
toc_float: true
number_sections: true
theme: journal
---
# Header1
## Header2
### Header3
* Item 1
* Item 2
+ Item 2a
+ Item 2b
This is text, but always remember that
a new line requires at least two empty spaces before shift.
```r
knitr::opts_chunk$set(echo = TRUE)
```
```r
vettoreA <- c(1,2,3)
vettoreB <- c(1,3,6)
vettoreA/vettoreB
```
```
## [1] 1.0000000 0.6666667 0.5000000
```
## R Markdown
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment