-
Notifications
You must be signed in to change notification settings - Fork 418
Closed
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behaviormissing values 💀
Description
tidyr::replace_na(list(character()), replace = "foo")
#> [[1]]
#> [1] "foo"
Created on 2021-10-18 by the reprex package (v2.0.1)
Due to is_complete()
's implementation. It should just replace NULL
s
Not sure why replace_na()
is using is_complete()
? Should not be using "incompleteness" as a replacement condition, should probably just be using "missingness" (i.e. through vec_equal_na()
)
Metadata
Metadata
Assignees
Labels
bugan unexpected problem or unintended behavioran unexpected problem or unintended behaviormissing values 💀