R Markdown Flashcards
What is the extension for an R Markdown document?
.Rmd
What button do you click to render an R Markdown document?
the “Knit” button
Insert [TEXT] in the output section of an R Markdown file to generate a powerpoint presentation.
“powerpoint_presentation”
To generate a PDF from an R Markdown, [blank] must be installed on your system.
LaTeX. This can be installed via the “tinytex” package.
What is the output format to knit a prettydoc document?
output: prettydoc::html_pretty
What is the keyboard shortcut to create a chunk of code in an R Markdown file?
Command + Option + i (MAC)
The [BLANK] option in an R Markdown chunk shows or hides the R code chunk in the knitted document.
echo
The filter function affects [BLANK] in a dataset while the select function affects [BLANKS].
Filter affects ROWS; Select affects COLUMNS
How would you match NA values for a variable called “ages” and set its NA values to “Missing age”?
is.na(ages) ~ “Missing age”
Which function converts numeric values to integers?
as.integer()