Skip to content

Commit

Permalink
code style
Browse files Browse the repository at this point in the history
  • Loading branch information
wlangera committed Oct 23, 2024
1 parent d25c994 commit f4a9857
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/targets/data_preparation/R/data_preparation.R
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ rbind_all_mas_data <- function(sample_data, extra_data) {
select(all_of(names(sample_data))) %>%

# Add column to distinguish sample and non-sample data
mutate(mas_sample = oid %in% sample_oids)
mutate(mas_sample = .data$oid %in% sample_oids)


return(complete_df)
Expand Down

0 comments on commit f4a9857

Please sign in to comment.