What's the difference between `=` and `<-` in R? [duplicate]
Possible Duplicate: Assignment operators in R: '=' and '<-' I'm using R 2.8.1 and it is possible to use both = and <- as variable assignment operators. What's the difference between them? Which one should I use? From here : The operators <- and = assign into the environment in which they are evaluated. 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. Reading from "Introducing Monte Carlo Methods with R", by Robert and