OneBite.Dev - Coding blog in a bite size

use a conditional to check less than number in R

Code snippet on how to use a conditional to check less than number in R

  if (x < 5) {
    print("x is less than 5")
  }

This code checks if the value of the variable “x” is less than 5. If it is less than 5, the program prints out “x is less than 5”. First, the code checks if the value of x is less than 5 using the “if” command. If the value of x is less than 5, the code inside the brackets is executed. In this example, it prints out “x is less than 5”. If the value of x is not less than 5, then the command inside the brackets is not executed and the program continues onto the next command.

r