---
title: 'Pre-lab 6: Micro Project'
author: "ADD your name"
format:
  html:
      theme: a11y
      highlight-style: a11y
      self-contained: true
      embed-resources: true
---


# Pre-lab 6


## Load R libraries

```{r warning=FALSE, message=FALSE}
library(mosaic)
library(knitr)
 trellis.par.set(theme=col.mosaic()) # changes default colors to something more appealing
```

## Load data

```{r eval = FALSE}
dat<-read.csv(" ") # Enter your dataset name here
```
 
## Plot 

```{r eval = FALSE}
enter code here for your plot here and delete this text
```


