Complete the code to filter rows where the column 'age' is greater than 30.
filtered_data <- subset(data, age [1] 30)
The operator > filters rows where 'age' is greater than 30.
Complete the code to filter rows where the 'score' column is equal to 100.
filtered_data <- subset(data, score [1] 100)
The operator == checks for equality, selecting rows where 'score' is exactly 100.
Fix the error in the code to filter rows where 'height' is less than or equal to 170.
filtered_data <- subset(data, height [1] 170)
The operator <= correctly filters rows where 'height' is less than or equal to 170.
Fill both blanks to filter rows where 'weight' is greater than 60 and 'age' is less than 50.
filtered_data <- subset(data, weight [1] 60 & age [2] 50)
Use > for weight greater than 60 and < for age less than 50.
Fill all three blanks to filter rows where 'score' is greater than 80, 'age' is less than 30, and 'height' is at least 160.
filtered_data <- subset(data, score [1] 80 & age [2] 30 & height [3] 160)
Use > for score greater than 80, < for age less than 30, and >= for height at least 160.