-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_9da09c1d4a6ee72728eaec651200ad06_Module2_lesson2.txt
85 lines (59 loc) · 1.4 KB
/
_9da09c1d4a6ee72728eaec651200ad06_Module2_lesson2.txt
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
75
76
77
78
79
80
81
82
******************************************
* The following text is provided
* for easier cutting and pasting as you
* work through the exercises in
* Module 2 - lesson 2: R Markdown Syntax
******************************************
# This is a level 1 header
### This is a level 3 header
Here is a link to [GOOGLE](https://www.google.com/)
Here is a word in **bold** and another word in __bold__.
Here is a word in *italics* and another word in _italics_.
When we compile our document, we are using the `rmarkdown` package.
Here are some example R commands:
```
2+2
mean(c(1,2,3,4,5))
```
Here is an example of a non-numbered list:
* Breakfast
- food
+ eggs
+ toast
+ bacon
- drink
+ apple juice
* Lunch
- taco
* Dinner
- baked chicken
- broccoli
- rice
Here is an example of a numbered list:
1. Breakfast
a. food
i. eggs
ii. toast
iii. bacon
b. drink
i. apple juice
2. Lunch
a. taco
3. Dinner
a. baked chicken
b. broccoli
c. rice
Here is an example of a blockquote:
> This is a block quote. This
> paragraph has two lines.
>
> 1. This is a list inside a block quote.
> 2. Second item.
Here is an example of a nested blockquote:
> This is a block quote. This
> paragraph has two lines.
>
> > This text is nested
Here is an example of code in a blockquote:
> 2+2
> mean(c(1,2,3,4,5))