I have a dataset in this form:
df.head(2)
Employee_Name EID Details
Lisa FG546HJ {"Summary": "Worked as a HR professional.", "Services_List": ["HR", "Marketing", "Hiring"],"On_payroll?": false}
Martin H5644HH {"Summary": "Worked as a UI Designer.", "Services_List": ["Frontend", "UI", "UX"],"On_payroll?": True}
As you can see, the 'Details' column is in json format...But I want the output to be in this form:
Employee_Name EID Summary Services_List On_Payroll?
Lisa FG546HJ Worked as a HR professional. HR,Marketing,Hiring false
Martin H5644HH Worked as a UI Designer. Frontend,UI,UX True
Can someone please suggest on how to convert it.