Skip to content

Commit

Permalink
fix bug in indicate_coltype_in_data_dict() (read_ukb.R)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmgpanw committed Jun 7, 2022
1 parent 7843247 commit aae7d75
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/read_ukb.R
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,8 @@ indicate_coltype_in_data_dict <- function(data_dict,
) %>%
dplyr::mutate(
"coercible_to_integer" = dplyr::case_when(
.data[["Coding"]] %in% !!ukb_codings_coercible_to_integer ~ "Yes"
.data[["Coding"]] %in% !!ukb_codings_coercible_to_integer ~ "Yes",
TRUE ~ "No"
)
)

Expand Down

0 comments on commit aae7d75

Please sign in to comment.