Final project data

I would like you to have identified a dataset for your final project, and tried loading it into R and/or Tableau. This will allow you to identify any data-cleaning or -wrangling issues you will need to address before you get to visualization.

I think everyone is going to need to use R for their process document, so this will be the first few lines of that Quarto document. For example this amount of code is sufficient:

---
title: "Final project data"
author: "Professor McNamara"
format: html
editor: visual
embed-resources: true
---
```{r}
library(tidyverse)
library(skimr)
```
```{r}
#| message: false
GSS <- read_csv("GSS_raw.csv")
skim(GSS)
```

I’d like you to look carefully at the data you are considering for your project, and write some sentences about any issues you see. (No need to fix them yet!)

These are just examples, you don’t necessarily need to address every single question if it is not appropriate for your data, and there are probably other things you will see in your particular dataset that aren’t covered here.