Skip to content

Commit

Permalink
ensure temp objects are removed
Browse files Browse the repository at this point in the history
  • Loading branch information
zdz2101 committed Jul 29, 2024
1 parent 19bd322 commit 72eeb14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/derive_params_growth_age.R
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ derive_params_growth_age <- function(dataset,
}

dataset_final <- dataset_final %>%
select(-c(SD2pos, SD3pos, SD2neg, SD3neg, age_bins))
select(-c(SD2pos, SD3pos, SD2neg, SD3neg, age_bins, temp_val, temp_z))

return(dataset_final)
}
2 changes: 1 addition & 1 deletion R/derive_params_growth_height.R
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ derive_params_growth_height <- function(dataset,
}

dataset_final <- dataset_final %>%
select(-c(SD2pos, SD3pos, SD2neg, SD3neg, ht_bins))
select(-c(SD2pos, SD3pos, SD2neg, SD3neg, ht_bins, temp_z, temp_val))

return(dataset_final)
}

0 comments on commit 72eeb14

Please sign in to comment.