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) library(tibble) df <- tibble( x = 1:2, y = list( list("a", "b"), list("c", "d") ) ) df %>% unnest(y) #> Error: Each column must either be a list of vectors or a list of data frames [y] # expected: tibble( x = c(1, 1, 2, 2), y = list("a", "b", "c", "d") ) #> # A tibble: 4 × 2 #> x y #> <dbl> <list> #> 1 1 <chr [1]> #> 2 1 <chr [1]> #> 3 2 <chr [1]> #> 4 2 <chr [1]>
Originally at tidyverse/purrr#265
The text was updated successfully, but these errors were encountered:
f418817
Require tidyr >= 0.8.9000, so that unnest can handle a list column.
58b95a1
See tidyverse/tidyr#278.
No branches or pull requests
Originally at tidyverse/purrr#265
The text was updated successfully, but these errors were encountered: