R4DS Ch. 27

# Text

markdown header 1

clean_cache()

{knitr}

clear out code chunk cache

file.info()

{base}

extract file information

cache

code chunk option to cache results

*text* or _text_

markdown italics

format()

{base}

format object for pretty printing

r

R markdown inline code

csl:

YAML syntax for CSL file

render()

{rmarkdown}

convert R markdown document to another format

output:

YAML syntax for output type

results

code chunk option to not show output

eval

code chunk option to run code and show output

1. text

markdown numbered list

^1^

markdown superscript

opts_chunk$set()

{knitr}

set knitr code chunk options

{r}

R markdown code chunk

echo

code chunk option to not show code

**text** or __text__

markdown bold

## Text

markdown header 2

params:

YAML syntax for document parameters

~2~

markdown subscript

[text1](text2)

markdown linked phrase

<text>

markdown linked URL

text

markdown code formatting

kable()

{knitr}

create knitr table

![text1](text2)

markdown image and alt text

* text

markdown bulleted list

print()

{base}

prints argument

now()

{lubridate}

return current date and time

### Text

markdown header 3

bibliography:

YAML syntax for bibliography file

The end!