-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercise-2.Rmd
63 lines (46 loc) · 1 KB
/
exercise-2.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
---
title: "Exercise 2 - Markdown syntax"
output: html_document
---
For each line below:
1. Format the line with markdown to display what the line describes.
2. Re-render the file to see if it worked.
3. Move on to the next line.
***
You can use markdown to indicate:
# A first level header
## A second level header
### A third level header
#### A fourth level header
##### A fifth level header
###### A sixth level header
> A block quote
```
A plain code block
```
**bold text**
_italic text_
`Monospaced text (e.g., inline code)`
~~striked text~~
superscripts^2^
An inline equation, $E = mc^{2}$.
An equation block (below)
$$ E = mc^{2} $$
A [hyperlink](rmarkdown.rstudio.com)
A horizontal rule (put one below)
***
An unordered list:
- Item 1
- Item 2
- sub-item 1
- sub-item 2
An ordered list:
1. Item 1
1. Item 2
+ sub-item 1
+ sub-item 2
A table:
Header 1 | Header 2
-------- | --------
Cell 1 | Cell 2
Cell 3 | Cell 4