Solution Review: Relational and Logical Operators
In this review, we give a detailed analysis of the solution to this problem.
Solution #1: Performing each Test Separately
Press + to interact
R
testVariable <- 19test1 <- testVariable > 4test2 <- testVariable < 10result <- test1 && test2cat(result)
Explanation
Our task was to check whether the testVariable
lies between ...