library(tidyverse)
library(readr)
library(ggplot2)
library(here)
library(glue)
::opts_chunk$set(echo=TRUE, warning=FALSE, message=FALSE) knitr
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.
<- here('posts', '_data')
path <- read_csv(glue('{path}/Public_School_Characteristics_2017-18.csv')) df
A sample of the data is shown below:
df