--- title: 'STAT 288: Filename (e.g., Chapter 1 Problems)' author: "Richard Single (your name here)" date: "Thursday, January 23, 2020" output: word_document: default html_document: default --- This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see . When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this: ```{r} summary(cars) ``` You can also embed plots, for example: ```{r, echo=TRUE} plot(cars) ``` Note that the figure width and figure height can be modified using `fig.width=` and `fig.height=` as below: ```{r, fig.width=4, fig.height=4} plot(cars) #```{r, fig.width=4, fig.height=4} ``` Note that the `echo = FALSE` parameter was added to the next code chunk to prevent printing the R code that generated the plot. ```{r, echo=FALSE} plot(cars) #```{r, echo=FALSE} ``` You can use `results="hide"` to hide the results/output (but the code would still be displayed) as below. ```{r, results="hide"} summary(cars) #```{r, results="hide"} ```