Executing
filter(i -> !ismissing(i.dep_delay > 60), select(flights, (:carrier, :dep_delay)))
should return the carriers with delay more than 60mins(my understanding!). But it returns carriers with all positive and negative dep_delays.
Why it behaves so?