I created a list using IsotopeData command. There are some elements in the list which are Missing["NotAvailable"]. I want to have the only available data in the list. Here is my code:
ClearAll["Global`*"]
IsotopeData[{94, 236}, "DecayEnergies"]
which gives me
{Quantity[5867.07, "Kiloelectronvolts"], Missing["NotAvailable"],
Missing["NotAvailable"], Quantity[-1588.01, "Kiloelectronvolts"]}
But in fact I want to have a list like:
{Quantity[5867.07, "Kiloelectronvolts"], Quantity[-1588.01, "Kiloelectronvolts"]}
How can I figure it out?

DeleteMissing? – Szabolcs Jul 29 '18 at 17:12