Reproducible Research Quiz 2

This is Quiz 2 from the Reproducible Research course within Coursera’s Data Science Specialization.

Questions


1. Who created Markdown?


  • John Gruber


2. When writing a document in R Markdown, how do you denote the beginning of an R code chunk?


  • ```{πš›}



3. When using knitr, how do you indicate the height and width of a plot created in a code chunk?


  • Set the β€˜fig.height’ and β€˜fig.width’ options for the code chunk



4. With some code chunks, we may not want the output generated by the chunk to be rendered into HTML but would prefer to print the output verbatim. How can we specify this preference for a given code chunk?


  • πš›πšŽπšœπšžπš•πšπšœ = β€œπšŠπšœπš’πšœβ€



5. When using knitr and R Markdown and producing output in HTML, why should you never edit the resulting HTML file?


  • Every time you knit() the R Markdown file, the HTML file will be overwritten


See more at: http://www.ryantillis.com/