I am trying to construct a DataFrame from an array of named tuples where some key:value pairs may be missing from some tuples.
They come from querying Airtable using Airtable,jl. If you have missing values in your table, they are not present in the data returned by the airtable API.
This is what an array may look like:
data = [(Number = 4, Name = “Abc Efgg”, Address = “48 Mont Rd”),
(Number = 6, Name = “Ruf Sly”, Address = “19A Keke ava”),
(Number = 10, Name = “Jack Bog”),
(Number = 5, Name = “Gid Hoo”, Address = “120 Mut Street”)]
I seem to be struggling to find a simple solution. Any ideas welcome.
Regards
David