# Week 03 Questions # An R Markdown file is plain text file that contains what 3 important types of content? An R Markdown file contains YAML header (optional), Chunks of R code, and some text that has mixed formatting (# heading and _italics_). # What is a chunk and how do you add them? of the many chunk options which one do you think you will use the most and why? How is inline code different than code chunks? A chunk is a piece of R code that is runable. You add them by clicking on the +C icon on top of the script but there are also keyboard options that make this faster. I think that I would use more between bash and R as they both have been very useful and used in our exercises. From my understanding, the inline code differs from code chunks because code chunks start with ```{} and ends with ``` and it is imbedded into the document youre working with. # What’s gone wrong with this code? Why are the points not blue? What is wrong with the code is that the color argument is a string "blue" instead of a variable so it leaves all the points to be the same color of the general use. To fix it you'd use 'blue' instead. # Of the many things we have done in class the past two weeks, what is one aspect you would like to revisit and spend more time on? I think I would like to revisit how to transfer the websites/urls/data to make it more use friendly to the rest of us in case we use it for our project.