Skip to content

Commit

Permalink
attempt 2 to style
Browse files Browse the repository at this point in the history
  • Loading branch information
erhla committed Jul 22, 2024
1 parent 7cd6421 commit 7bf03d7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions data-raw/sample_tax_bills/sample_tax_bills_detail.R
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,13 @@ extract_tax_bill <- function(file) {
agency_name = str_squish(agency_name),
flag = is.na(prev_tax),
prev_tax = if_else(flag,
pension,
prev_tax),
pension,
prev_tax
),
pension = if_else(flag,
NA,
pension)
NA,
pension
)
) %>%
select(-flag) %>%
filter(
Expand Down

0 comments on commit 7bf03d7

Please sign in to comment.