Guest User

Untitled

a guest
Feb 22nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. list_1 <- list("Red", TRUE, 51.23)
  2. print(list_1)
  3.  
  4. # Merging the lists
  5.  
  6. list_2 <- list(1,2,3)
  7. list_3 <- list("Sun","Mon","Tue")
  8.  
  9. # Merge the two lists
  10. merged.list <- c(list_2,list_3)
  11.  
  12. # Print the merged list.
  13. print(merged.list)
Add Comment
Please, Sign In to add comment