We have a list of lists:
[['130', '2020-12-17 12:02:19', [52.1846976, 21.0525275]], ['213', '2020-12-17 12:02:22', [52.1757618, 21.2319711]]
and want to convert it into a dataframe as such:
index 2020-12-17 12:02:19 2020-12-17 12:02:22
130 [52.1846976, 21.0525275] NaN
213 NaN [52.1757618, 21.2319711]
Can't figure it out.