Created
May 8, 2020 14:21
-
-
Save PatrickRWright/f0eb65f90fdcae1002432a475b31a188 to your computer and use it in GitHub Desktop.
Created on Skills Network Labs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Original comment in older gist by @DrEspresso:
Careful, the right hand side in
case_when
needs to be of the same data type! E.g. if you want to return NA for all other cases, you need to specifyTRUE ~ NA_integer_
, asNA
is of typelogical
and will throw an error.