Guest User

Untitled

a guest
Jul 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. a<-c(31,4,6,7,22,5)
  2.  
  3. a > 10
  4.  
  5. [1] TRUE FALSE FALSE FALSE TRUE FALSE
  6.  
  7. a[a >10]
  8. [1] 31 22
  9.  
  10. a b c d e
  11. [1,] 0.5 2 5 8 10
  12.  
  13. mat[1,] > 2
  14.  
  15. a b c d e
  16. FALSE FALSE TRUE TRUE TRUE
  17.  
  18. [1] 5 8 10
Add Comment
Please, Sign In to add comment