Answer the question
In order to leave comments, you need to log in
What can the command MyValues > 10 do?
1) Returns FALSE if MyValues is less than 10
2) Only returns MyValues greater than 10
3) Only returns MyValues less than 10
4) Returns TRUE if MyValues is greater than 10
> MyValues <- c(2, 5, 8, 10, 12, 14)
> MyValues > 10
[1] FALSE FALSE FALSE FALSE TRUE TRUE
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question