Search Archives
Search tips
from:Name
Search by author name, e.g. from:Duncan Murdoch
"exact phrase"
Match an exact phrase
word1 word2
Match messages containing both words
Date range
Use the date pickers to filter results to a time period
Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.
call by reference
biter bilen
·
Dec 19, 2006
·
r-help
Can anyone help me about pass by reference of arguments in R functions? I have read about .Alias in base package however it is defunct and there is no replacement for it. Thanks in advance.
call by reference
biter bilen
·
Dec 20, 2006
·
r-help
a = 9 b = 8 print (a) print (b) fa<-function(bS, aV) { aV <<- 3 assign(bS,3,env = .GlobalEnv) } fa("b", a) print (a) #9 print (b) #3 #only this call is ok ----- Original Message ---- From: Prof Brian Ripley <ripley...
Can't find what you're looking for? Try searching with Google .