I have a list having multiple items
result = *json_formatted*
print(result) <-- [{'id: 1', value: array([10,11,12])}, {id: 2, value: array([20,21,22]) }]
I am struggling to get this as a dataframe. I'd like my output to look like
id value
1 10
1 11
1 12
2 20
2 21
2 22