-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Consider the following code.
nuts tell us that HR03 is missing but it isn't
mydf <- data.frame(nuts_code=c("HR03", "HR04", "HR05"))
mydf_nuts <- nuts_classify(mydf, nuts_code="nuts_code")
> mydf_nuts$missing_data
# A tibble: 3 × 4
from_code from_version from_level country
<chr> <chr> <dbl> <chr>
1 HR02 2021 2 Croatia
2 HR03 2016 2 Croatia # <- this is not missing
3 HR06 2021 2 Croatia
Reactions are currently unavailable