Json – pandas dataframe breaking long table to multiple tables
I have a dataframe which has a structure like below. id, name, value, employee_0_salary, employee_0_skills_0_id, employee_0_skills_1_id, employee_1_salary, employee_1_skills_0_id so on.. Basically formed from a flattened json. But the number of columns exceed 1024. I couldn't copy the structure of json…