7 Flashcards

1
Q

Header in R markdown?

A

author:
title:
subtitle:
date:
output:
word_document: default

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Headers and text in R markdown?

A

Header

Text

(You stack headers by using the number of hashtag symbols)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How to put a sentence in another line in R markdown?

A

Two spaces after that line.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Bullet list in R markdown?

A

*one bulleted list
*another bulleted list
*previous bulleted list

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Numbered list in R markdown?

A
  1. One point
  2. Second point
    +sublist (remember two tabs)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Code chunk in R markdown?

A

```{r eval or echo or results or fig.height, fig.width }

~~~

Eval = display my code but don’t actually run it (true/false)
Echo = Run the code but wont actually show the code (true/false)
Results = “hide” = hide the results of the code (doesn’t hide graphs)
Results = “hold” = Hold all the results until all the code is run to then show the results.
fig.height and fig.width =

How well did you know this?
1
Not at all
2
3
4
5
Perfectly