-
Notifications
You must be signed in to change notification settings - Fork 419
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
unnest column of data.frames #1112
Comments
The error happens here in Line 341 in 2fd80d5
That can probably be fixed, but the bigger issue is that eventually this will call Lines 122 to 124 in 2fd80d5
We could try to pull in the POC implementation of |
Maybe we could just make this an informative error? (saying to use |
Also related to #969 |
unnest() does not work with data.frame columns.
unnest()
works with list column of nested data.frames, but fails with a data.frame column for the same data. Given that this is a common data format (e.g. typicalfromJSON()
output) it feels like an unnecessary trap for the unaware.The documentation does specify "list-column" in the title of the documentation, but otherwise this distinction of column-type isn't discussed. It feels to me that a column of nested data.frames is quite likely to be confused with a list column of nested data.frames.
The text was updated successfully, but these errors were encountered: