Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. l1 <- list(c(1933:1935),c(1950:1954), c(2012:2013)) #groups of years
  2. l2 <- list(c(19:21),c(19:24),c(22:26)) #groups of plot numbers
  3.  
  4. > l3
  5. [[1]]
  6. [[1]]
  7. [1] 19 20 21
  8.  
  9. [[1]]
  10. [[2]]
  11. [1] 19 20 21
  12.  
  13. [[1]]
  14. [[3]]
  15. [1] 19 20 21
  16.  
  17. [[2]]
  18. [[1]]
  19. [1] 19 20 21 22 23 24
  20.  
  21. [[2]]
  22. [[2]]
  23. [1] 19 20 21 22 23 24
  24.  
  25. [[2]]
  26. [[3]]
  27. [1] 19 20 21 22 23 24
  28.  
  29. [[2]]
  30. [[4]]
  31. [1] 19 20 21 22 23 24
  32.  
  33. [[3]]
  34. [[1]]
  35. [1] 22 23 24 25 26
  36.  
  37. [[3]]
  38. [[2]]
  39. [1] 22 23 24 25 26
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement