Skip to content
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

Exploding non-nested lists rather than unpacking into separate columns #74

Open
mdbuzzer opened this issue Mar 24, 2021 · 0 comments
Open

Comments

@mdbuzzer
Copy link

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 ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant