Question 1 1 pts Which one of the following R codes would run without any errors? value <-5 if(value > 5){ result <- 'mo
Posted: Wed Mar 30, 2022 9:30 am
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' }