Skip to content

Commit

Permalink
setup targets scripts for old years
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennit07 committed Jul 22, 2024
1 parent bab433a commit 0844a2f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Run_SLF_Files_targets/run_targets_1415.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
library(targets)

year <- "1415"

# use targets for the process until testing episode files
tar_make_future(
# it does not recognise `contains(year)`
names = (targets::contains("1415"))
)

10 changes: 10 additions & 0 deletions Run_SLF_Files_targets/run_targets_1516.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
library(targets)

year <- "1516"

# use targets for the process until testing episode files
tar_make_future(
# it does not recognise `contains(year)`
names = (targets::contains("1516"))
)

10 changes: 10 additions & 0 deletions Run_SLF_Files_targets/run_targets_1617.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
library(targets)

year <- "1617"

# use targets for the process until testing episode files
tar_make_future(
# it does not recognise `contains(year)`
names = (targets::contains("1617"))
)

0 comments on commit 0844a2f

Please sign in to comment.