Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
wrridgeway committed Jan 11, 2024
1 parent 681e91a commit 52574ad
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pipeline/02-assess.R
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,10 @@ message("Attaching and parsing land values")
# Attach land and sales data to the PIN-level data, then calculate land and
# building values for each PIN
assessment_data_pin_2 <- assessment_data_pin %>%
left_join(land_nbhd_rate, by = c("meta_nbhd_code" = "meta_nbhd", "meta_class")) %>%
left_join(
land_nbhd_rate,
by = c("meta_nbhd_code" = "meta_nbhd", "meta_class")
) %>%
left_join(sales_data_two_most_recent, by = "meta_pin") %>%
left_join(sales_data_ratio_study, by = c("meta_year", "meta_pin")) %>%
left_join(sales_data_bldg_change_pct, by = "meta_pin10") %>%
Expand Down

0 comments on commit 52574ad

Please sign in to comment.