Recall that when creating R packages you need to use package referencing for any functions loaded through libraries.
I see inconsistent application of this principle throughout the code.
For example, rename() is a dplyr function.
df <- df %>% rename(geo = {{geo}},
subsector = {{subsector}},
resource = {{resource}})
Please double-check the code to make sure package references are used appropriately.
Recall that when creating R packages you need to use package referencing for any functions loaded through libraries.
I see inconsistent application of this principle throughout the code.
For example, rename() is a dplyr function.
Please double-check the code to make sure package references are used appropriately.