--- title: "Replace with Main Title" author: "Your Name" output: html_document --- #### `r as.character(Sys.Date())` ```{r echo=FALSE} # include this code chunk as-is to set options knitr::opts_chunk$set(comment=NA, prompt=TRUE, fig.height=8, fig.width=8) # use fig.height=6.5, fig.width=6.5 for word output ``` Replace with Section Title ------------------------------ * Make a bullet point. ```{r} # R commands go here. # You can adjust fig.height, and fig.width to make graphs look better. # For example, for a small graph, try {r fig.width=4, fig.height=4}; # for a graph with two side-by-side panels, try {r fig.height=4}. ``` * Intersperse R code chunks with explanatory text as needed. * Press the Knit button in the toolbar to process the .Rmd file into an .html (or .pdf or .docx) file. * For more information on using R Markdown in RStudio press the ? button in the toolbar or visit .