Json to CSV issues
问题 I am using pandas to normalize some json data. I am getting stuck on this issue when more than 1 section is either an object or an array. If i use the record_path on Car it breaks on the second. Any pointers on how to get something like this to create a line in the csv per Car and per Location? [ { "Name": "John Doe", "Car": [ "Car1", "Car2" ], "Location": "Texas" }, { "Name": "Jane Roe", "Car": "Car1", "Location": [ "Illinois", "Kansas" ] } ] Here is the output Name,Car,Location John Doe,"[