library(tidyverse)
library(ggplot2)
library(summarytools)
::opts_chunk$set(echo = TRUE, warning=FALSE, message=FALSE) knitr
Challenge 5
challenge_5
psc
tidyverse
ggplot2
summarytools
Intro to Visualization
Read in data
I’ve previously worked with the households dataset, so I’ll be working with the Public School Characteristics dataset for this challenge. Using complete(), I’ll set all missing values to NA.
# read in dataset.
<- read_csv("_data/Public_School_Characteristics_2017-18.csv")
psc
# fill in NA.
<- complete(psc)
psc
# view dataset.
psc