I have a pandas dataseries with format as follows:
[{"longitude": 100.70393638087968, "latitude": 3.456461151, "timestamp": 1.1515151},
"longitude": 100.43435425, "latitude": 3.21651151651, "timestamp": 1.5464554}
...]
I want to obtain the values for each of these in an array (or equivalent), with headers: “Latitude”, “Longitude”, “Timestamp”.
How can I achieve this please?
Note: I am a beginner in python.
I’m not really sure how I can separate the numeric and string values from this dataseries. As far as I can understand, the dataseries is a string.
New contributor
Pranav Ramsahye is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.