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
I noticed the flatten_json function unpacks a list even when it contains only integers for example: list = [1,2,3]
Rather than exploding like so: list 1 2 3
It places them into individual columns list_0 list_0 list_0 1 2 3
Is there a way it can accommodate lists which aren't nested and just need to be exploded rather than unpacked like a list of dictionaries ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I noticed the flatten_json function unpacks a list even when it contains only integers for example:
list = [1,2,3]
Rather than exploding like so:
list
1
2
3
It places them into individual columns
list_0 list_0 list_0
1 2 3
Is there a way it can accommodate lists which aren't nested and just need to be exploded rather than unpacked like a list of dictionaries ?
The text was updated successfully, but these errors were encountered: