1 Here is a first-level header (see how big it is in the knitted document)!

1.1 Here is a second-level header!

1.1.1 Here is a third-level header!

Here is some text that I can use to explain what is going on in my analysis. I’ve made sure to write the text outside of the code chunk!

Here is some bold text

Here is some italic text

```{r.include = false} #load libraries library(tidyverse) library(tmap) library(sf)

#load data parks <- st_read(“https://drive.google.com/uc?export=download&id=1JNbcHQvKfm4menXhUjP71sYF207Y8ozm”)



``` r
# create a map of parks in Chapel Hill
tm_shape(parks) + tm_dots("Park_Hours")