Skip to content

Commit

Permalink
hotfix: interpolate missing vars message
Browse files Browse the repository at this point in the history
  • Loading branch information
psanker committed Mar 28, 2023
1 parent 833bf83 commit 4a4391d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/homogenization.R
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ homogenize_wave_names <- function(panel, w, long_map, ctx = list()) {

if (isTRUE(replace_missing_with_na)) {
msg <- c(missing_msg, "\nThey have been created with missingness in anticipation of their eventual existence")
message(paste0(msg, collapse = ""))
message(glue::glue(paste0(msg, collapse = "")))

for (mv in missing_vars) {
wave_db[[mv]] <- NA
Expand Down

0 comments on commit 4a4391d

Please sign in to comment.