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
library(tidyr) # df-col with 1 row and 0 cols df <- tibble(x = tibble(.rows = 1)) # should be 1 row and 0 cols unpack(df, x) #> # A tibble: 0 × 0
Created on 2021-11-03 by the reprex package (v2.0.1)
The text was updated successfully, but these errors were encountered:
And in expand_grid() due to flatten_nested()
expand_grid()
flatten_nested()
tidyr::expand_grid(tibble::tibble(.rows = 1)) #> # A tibble: 0 × 0
Best solution is probably to make flatten_at() return a data frame itself with the right number of rows (that can be promoted to a tibble as needed)
flatten_at()
Sorry, something went wrong.
unpack()
Successfully merging a pull request may close this issue.
Created on 2021-11-03 by the reprex package (v2.0.1)
The text was updated successfully, but these errors were encountered: