The manual states:
The operator ‘<-’ can be used anywhere, whereas the operator ‘=’ is only allowed at the top level (e.g., in the complete expression typed at the command prompt) or as one of the subexpressions in a braced list of expressions.
The question here mention the difference when used in the function call. But in the function definition, it seems to work normally:
a = function ()
{
b = 2
x <- 3
y <<- 4
}
a()
# (b and x are undefined here)
So why the manual mentions that the operator ‘=’ is only allowed at the top level??
There is nothing about it in the language definition (there is no = operator listed, what a shame!)
tryblock:try( x <- f() )is fine, buttry( x = f(x) )is not -- you need to either change the assignment operator or add braces. – Vincent Zoonekynd Jun 8 '12 at 13:27system.timecall:system.time(a <- runif(10000)). I almost exclusively use = assignment and I haven't run into many problems. – Paul Hiemstra Jun 8 '12 at 13:50fun(a <- 1)is greater than the benefit overa <- 1; fun(a). It is rare to see assignment in the place of function arguments in other languages. R is a bizarre but anyway great language.<-working everywhere is dangerous, and the other danger I have seen in the past is when people meanx smaller than negative 1, they forget the space and end up withx<-1(you may laugh at it, but it did happen) – Yihui Jun 8 '12 at 17:46