What is rmarkdown? (Check all that apply.)
Answers -A format that can be interpreted into markdown (which is a simplified markup language).
-A simplified format that, when interpreted, incorporates your R analysis into your document.
In rmarkdown presentations, in the options for code chunks, what command prevents the code from being repeated before results in the final interpreted document?
Answer: echo = FALSE
In rmarkdown presentations, in the options for code chunks, what prevents the code from being interpreted?
Answer: eval = FALSE
What is leaflet? (Check all that apply.)
Answers:
-An R package interface to the javascript library of the same name
-A javascript library for creating interactive maps
The R command df %>% leaflet() %>% addTiles() s equivalent to what? (Check all that apply)
Answer: -leaflet(df) %>% addTiles()
-addTiles(leaflet(df))
If I want to add popup icons to my leaflet map in R, I should use.
Answer: addMarkers