Skip to content

Commit

Permalink
Update targets with get_chi()
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennit07 committed May 28, 2024
1 parent 1fa5edf commit 79c7a30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _targets.R
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ list(
tar_target(
source_sc_alarms_tele,
process_extract_alarms_telecare(
data = all_at,
data = all_at %>% slfhelper::get_chi(),
year = year,
write_to_disk = write_to_disk
)
Expand All @@ -490,7 +490,7 @@ list(
tar_target(
source_sc_care_home,
process_extract_care_home(
data = all_care_home,
data = all_care_home %>% slfhelper::get_chi(),
year = year,
ch_costs = ch_cost_lookup,
write_to_disk = write_to_disk
Expand All @@ -506,7 +506,7 @@ list(
tar_target(
source_sc_home_care,
process_extract_home_care(
data = all_home_care,
data = all_home_care %>% slfhelper::get_chi(),
year = year,
write_to_disk = write_to_disk
)
Expand All @@ -521,7 +521,7 @@ list(
tar_target(
source_sc_sds,
process_extract_sds(
data = all_sds,
data = all_sds %>% slfhelper::get_chi(),
year = year,
write_to_disk = write_to_disk
)
Expand Down

0 comments on commit 79c7a30

Please sign in to comment.