7 Flashcards
Header in R markdown?
author:
title:
subtitle:
date:
output:
word_document: default
Headers and text in R markdown?
Header
Text
(You stack headers by using the number of hashtag symbols)
How to put a sentence in another line in R markdown?
Two spaces after that line.
Bullet list in R markdown?
*one bulleted list
*another bulleted list
*previous bulleted list
Numbered list in R markdown?
- One point
- Second point
+sublist (remember two tabs)
Code chunk in R markdown?
```{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 =