added district double check to schoolmaps_PDFs.Rmd
This commit is contained in:
parent
61bf55f116
commit
fbc49fa518
@ -431,11 +431,13 @@ for(school in WI_schools$district_school) {
|
|||||||
double_check[[school]] <- school_check
|
double_check[[school]] <- school_check
|
||||||
}
|
}
|
||||||
double_check <- bind_rows(double_check)
|
double_check <- bind_rows(double_check)
|
||||||
unique(WI_schools %>%
|
write_csv(double_check, file = "parameters/double_check.csv")
|
||||||
|
|
||||||
|
districts_not_done <- data.frame(districts = c(unique(WI_schools %>%
|
||||||
filter(district_school %in% (double_check %>%
|
filter(district_school %in% (double_check %>%
|
||||||
filter(exists == FALSE) %>%
|
filter(exists == FALSE) %>%
|
||||||
pull(district_school)),
|
pull(district_school)),
|
||||||
!st_is_empty(SHAPE)) %>%
|
!st_is_empty(SHAPE)) %>%
|
||||||
pull(DISTRICT_NAME))
|
pull(DISTRICT_NAME))))
|
||||||
write_csv(double_check, file = "parameters/double_check.csv")
|
write_csv(districts_not_done, file = "parameters/districts_not_done.csv")
|
||||||
```
|
```
|
Loading…
x
Reference in New Issue
Block a user