In R, type the expression that returns every row of orders whose amount is over 900 (all columns).
In R, type the expression that returns every row of orders whose amount is over 900 (all columns).
Answer
orders[orders$amount > 900, ]
Rows 5 and 10 — their original row names — with order_id 1005 and 1010. The trailing comma means "all columns"; Module 11 makes it a rule.