I have a table that looks like this:
id actions
ua123 [{'type':'mobile'},{'action':'display conversion'}]
ua234 [{'type':'DT'},{'action':'search'},{'value':'40'}]
Why this table looks like this is because the information was crawled from the website. And I want to split the actions column into several columns, such as:
id actions1 action2 action3
ua123 [{'type':'mobile'} {'action':'display conversion'}] Null
ua234 [{'type':'DT'} {'action':'search'} {'value':'40'}]
Please feel free to share any lights. Thanks!