Skip to content

Commit ecf170b

Browse files
moving files
1 parent be1c2ad commit ecf170b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

04_prepare_neighborhood_data.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ neighborhood_shape <-as_tibble(neighborhood_shape)
7272
neighborhood_shape<-neighborhood_shape %>% mutate(id = row_number())
7373
org_data <-left_join(in_balt, neighborhood_shape, by = c("intersection" = "id"))
7474
75-
write_rds(org_data, file = "data/org_data.rds")
75+
write_rds(org_data, file = "data/processed/org_data.rds")
7676
7777
```

05-filtering_data.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ First reading in our data
66
```{r}
77
library(tidyverse)
88
library(sf)
9-
org_data <- read_rds("data/org_data.rds")
9+
org_data <- read_rds("data/processed/org_data.rds")
1010
1111
```
1212

0 commit comments

Comments
 (0)