In R, type the call that returns orders with every row containing an NA removed.
In R, type the call that returns orders with every row containing an NA removed.
Answer
na.omit(orders)
The whole row goes, whichever column was blank. With 1005 blank, nrow() is 11. complete.cases(orders) is the logical vector behind it.