I have a tibble that has a column of type double, confirmed with type of, containing 0's and 1's. I need to turn these 0's and 1's into true or false
my_tibble$column_to_convert <- as.logical(my_tibble$column_to_convert)
has not worked. The values still display as NA