| Line 31... |
Line 31... |
| 31 |
subexpressions in a braced list of expressions.
|
31 |
subexpressions in a braced list of expressions.
|
| 32 |
|
32 |
|
| 33 |
The operators \code{<<-} and \code{->>} cause a search to made through
|
33 |
The operators \code{<<-} and \code{->>} cause a search to made through
|
| 34 |
the environment for an existing definition of the variable being
|
34 |
the environment for an existing definition of the variable being
|
| 35 |
assigned. If such a variable is found then its value is redefined,
|
35 |
assigned. If such a variable is found then its value is redefined,
|
| 36 |
otherwise assignment takes place globally. Note that their semantics
|
36 |
otherwise assignment takes place globally. Note that their semantics
|
| 37 |
differ from that in the S language, but is useful in conjunction with
|
37 |
differ from that in the S language, but are useful in conjunction with
|
| 38 |
the scoping rules of \R.
|
38 |
the scoping rules of \R.
|
| 39 |
|
39 |
|
| 40 |
In all the assignment operator expressions, \code{x} can be a name
|
40 |
In all the assignment operator expressions, \code{x} can be a name
|
| 41 |
or an expression defining a part of an object to be replaced (e.g.,
|
41 |
or an expression defining a part of an object to be replaced (e.g.,
|
| 42 |
\code{z[[1]]}). The name does not need to be quoted, though it can
|
42 |
\code{z[[1]]}). The name does not need to be quoted, though it can
|