Code
union(tibble(a = 1), tibble(a = "1"))
Error <rlang_error>
not compatible:
- Incompatible types for column `a`: double vs character
Code
union(tibble(a = 1, b = 2), tibble(a = "1", b = "2"))
Error <rlang_error>
not compatible:
- Incompatible types for column `a`: double vs character
- Incompatible types for column `b`: double vs character
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.