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 ?
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 ?