-
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()
doesn't always drop NULL
columns
#900
Comments
Thanks, this looks reasonable. |
Does author: kirill
|
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. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Generally,
tibble()
dropsNULL
input columnsBut if the
tibble()
call is wrapped up in a function, then the internal usage ofquo_is_null()
doesn't see the input as a NULL value.I'm fairly certain an easy fix for this is to switch from
quos()
toenquos()
intibble()
, that should be more appropriate anyways asenquos()
is for capturing arguments:tibble/R/tibble.R
Line 149 in 6fb9a90
And here in
tibble_row()
, might need to look for more usage of it:tibble/R/tibble.R
Line 171 in 6fb9a90
Here is an example of quos vs enquos:
The text was updated successfully, but these errors were encountered: