yaml
heading on a documentArtwork by @allison_horst
Complete today’s activity first!
These slides just include helpful reminders that you may find useful to refer back to when working on later activities.
code and text for report go here
stored variables and data shows up here
your working directory project files are here
CONSOLE PANE one time code that does not appear in document can go here
``` {{r}}
#| message: false
#| warning: false
#| eval: false
#| echo: false
#| include: false
```
message: false
prevents messages from appearing in knitted docwarning: false
prevents warnings from appearing in knitted doceval: false
includes the code chunk in the knitted document but prevents the code chunk from being runecho: false
prevents code itself from printing but includes the results of the codeinclude: false
prevents code and its results from printing but still runs the code when knitted