library(tidyverse)
library(readr)
library(ggplot2)
library(here)
library(glue)
knitr::opts_chunk$set(echo=TRUE, warning=FALSE, message=FALSE)Challenge 5: Visualization
challenge_5
tidyverse
ggplot
public_schools
jocelyn_lutes
Using ggplot to visualize the Public Schools dataset
Import Data
For this challenge, I have chosen to work with the Public School Characteristics dataset. We will begin by using readr::read_csv() to import the data.
path <- here('posts', '_data')
df <- read_csv(glue('{path}/Public_School_Characteristics_2017-18.csv'))A sample of the data is shown below:
df