Hi, All
I've pulled some data down from the new Entity[] feature of Mathematica by mapping across all known properties of a given entity. So my data has come back with some Missing[] items.
Schematically, what I have got is something like:
{{A, 1}, {B, 2}, {C, Missing[NotAvailable]}, {D, 4}}
...and what I want is...
{{A, 1}, {B, 2}, {D, 4}}
I know I should be able to use some combination of DeleteCases, MissingQ or the _Missing pattern, but I just don't seem to be able to combine them such that I am deleting the WHOLE of a level two list entry if it's second property is Missing.
It's embarrassing!
Please help.
Thanks in advance
Brad