Guest User

Untitled

a guest
Jan 24th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. times <- c("0000", "0100","0200", "0300", "0400", "0500", "0600", "0700", "0800", "0900", "1000", "1100", "1200",
  2. "1300", "1400" ,"1500" ,"1600", "1700" ,"1800" ,"1900" ,"2000" ,"2100", "2200" ,"2300")
  3.  
  4. > times[2] < times[3]
  5. [1] TRUE
  6.  
  7. > times[21] < times[22]
  8. [1] TRUE
  9.  
  10. > times[23]
  11. [1] "2200"
  12. > times[1]
  13. [1] "0000"
  14. > times[23] < times[1]
  15. [1] FALSE
Add Comment
Please, Sign In to add comment