Guest User

Untitled

a guest
Jun 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. # R hacks that are cool ------
  2.  
  3. ## Function to create list with default elements
  4.  
  5. list_defaults <- function(
  6. a = 1,
  7. b = 3,
  8. c = "lsa"){
  9.  
  10. return(as.list(environment(), all=TRUE))
  11. }
Add Comment
Please, Sign In to add comment