Question 1 1 pts Which one of the following R codes would run without any errors? value <-5 if(value > 5){ result <- 'mo
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Question 1 1 pts Which one of the following R codes would run without any errors? value <-5 if(value > 5){ result <- 'mo
Question 1 1 pts Which one of the following R codes would run without any errors? value <-5 if(value > 5){ result <- 'more than 5 }else{ result <- 'less than or equal to 5' } value <- 5 if (> 5){ result <- 'more than 5' }else{ result <- 'less than or equal to 5' } O value <- 5 if(value > 5) result <- 'more than 5 }{ result <- 'less than or equal to 5' } value <- 5 if(value > 5){ result <- 'more than 5' else result <- 'less than or equal to 5' }