-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro-to-rmarkdown.Rmd
87 lines (52 loc) · 1.59 KB
/
intro-to-rmarkdown.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
title: "Intro to RMarkdown ADC"
author: "Ellie Honan"
date: "2023-02-27"
output: html_document
bibliography: references.bib
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
Plain text
whether you *have* any **time** or location constraints (we want to make these experiences as accessible to people as possible so please let us know, for example, if a shorter trip of a couple of days would suit you better than a week trip, or if you ~~have~~ any physical/mobility issues that might restrict where you can visit/the terrain you can work in. Please also indicate how far you would be willing to travel\*)
# Big header
## Small header
### Smaller header
###### Smaller header
...
> test block quote
| Table Header | Second Header |
|--------------|---------------|
| Table Cell | Cell 2 |
| Cell 3 | Cell 4 |
1. test ordered list
2. test item 2
- test sub-item 1
- test sub-item 2
This is a very interesting fact[@lato2023]
| Table Header | Second Header |
|--------------|---------------|
| Table Cell | Cell 2 |
| Cell 3 | Cell 4 |
| column 1 | Col2 | Col3 |
|----------|------|------|
| Item 1 | | |
| item 2 | | |
| | | |
: Example of a table
inline equation: $A = \pi*r^{2}$
summary(penguins)
```{r echo=FALSE}
install.packages("palmerpenguins")
library(palmerpenguins)
summary(penguins)
```
```{r eval=TRUE, echo=FALSE}
paste("Hello", "World!")
```
```{r}
x <- 4*4
summary(penguins)
```
The shortcut to install a code chunk is ctrl alt what she went so fast