πŸ“Š R Programming
Q. In dplyr, how do you filter rows where a specific variable is within a range using filter()?
  • (A) filter(variable >= lower_bound & variable <= upper_bound)
  • (B) filter(between(variable, lower_bound, upper_bound))
  • (C) filter(variable > lower_bound & variable < upper_bound)
  • (D) filter(in_range(variable, lower_bound, upper_bound))
πŸ’¬ Discuss
βœ… Correct Answer: (B) filter(between(variable, lower_bound, upper_bound))

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
149
Total Visits
πŸ“½οΈ
2 y ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
80%
Success Rate