Identifying variables in WA school accountability data
library(readr)
WA_Edu_Improvment_2017_2019 <- read_csv("WA_School_Improvment_2017_-_2019_Runs.csv")
View(WA_Edu_Improvment_2017_2019)
dim(WA_Edu_Improvment_2017_2019)
[1] 72850 56
head(WA_Edu_Improvment_2017_2019)
# A tibble: 6 × 56
`ESD Organization Id` `ESD Name` `District Orga…` `District Code`
<dbl> <chr> <dbl> <dbl>
1 100006 Puget Sound … 100229 17001
2 100003 Educational … 100278 6037
3 100009 Northwest Ed… 100142 31025
4 100009 Northwest Ed… 100159 31006
5 100009 Northwest Ed… 100142 31025
6 100007 Educational … 100195 11001
# … with 52 more variables: `District Name` <chr>,
# `School Code` <dbl>, `School Name` <chr>,
# `School Organization Id` <dbl>, `School Type` <chr>,
# `Student Group` <chr>, `Proficiency ELA Numerator` <chr>,
# `Proficiency ELA Denominator` <dbl>,
# `Proficiency ELA Rate` <chr>, `Proficiency ELA Decile` <dbl>,
# `Proficiency Math Numerator` <chr>, …
library("tidyverse")
WA_Edu_Improvment_2017_2019_Filtered2<-WA_Edu_Improvment_2017_2019 %>%
filter(!grepl('Suppress | N',"Regular Attendance Rate"))%>%
ggplot(aes("Student Group", "Regular Attendance Rate")) +
geom_boxplot()
Note that the echo = FALSE
parameter was added to the code chunk to prevent printing of the R code that generated the plot.
Text and figures are licensed under Creative Commons Attribution CC BY-NC 4.0. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".
For attribution, please cite this work as
Derian-Toth (2022, Feb. 23). Data Analytics and Computational Social Science: MADT_Homework 3. Retrieved from https://github.com/DACSS/dacss_course_website/posts/httpsrpubscommderiantothdacss601hw2mdt/
BibTeX citation
@misc{derian-toth2022madt_homework, author = {Derian-Toth, Meredith}, title = {Data Analytics and Computational Social Science: MADT_Homework 3}, url = {https://github.com/DACSS/dacss_course_website/posts/httpsrpubscommderiantothdacss601hw2mdt/}, year = {2022} }