We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
drop_na() does not keep attributes of columns as shown below. I think it should. thanks
ttbl <- tibble(col1 = c(1,2, NA, 2)) attr(ttbl$col1, "attr")<- "A value" ttbl$col1 drop_na(ttbl)$col1
The text was updated successfully, but these errors were encountered:
This looks like an easy fix — we just need to switch from [ to vec_slice()
[
vec_slice()
Sorry, something went wrong.
7c94459
No branches or pull requests
drop_na() does not keep attributes of columns as shown below. I think it should.
thanks
The text was updated successfully, but these errors were encountered: