Q45
How do you filter rows where a specific variable is not equal to a given value using filter() in dplyr?
A.
filter(variable != value)
AnswerB.
filter(not_equal(variable, value))
C.
filter(variable <> value)
D.
filter(variable not in value)
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board