-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tibble() should silently drop NULL columns #580
Comments
What should |
I think the current behaviour of throwing an error about duplicated columns is probably correct. |
According to the principles |
The principles aren't set in stone yet. |
The question is really about which principle (names must be unique; |
This old thread has been automatically locked. If you think you have found something related to this, please open a new issue and link to this old issue if necessary. |
To be consistent with tidyverse/design#24
And it would also make
tibble(x = 1, y = NULL)
return the same as:The text was updated successfully, but these errors were encountered: