As the question asks, is there a control sequence in R similar to C's ternary operator? If so, how do you use it? Thanks!
|
As
The power of R is vectorization. The vectorization of the ternary operator is
Just kidding, you can define c-style
here, you don't need to take care about brackets:
but you need brackets for assignment :(
Finally, you can do very similar way with c:
You can get rid of brackets:
These are not for daily use, but maybe good for learning some internals of R language. |
||||
|
Like everyone else said, use
Remember the brackets, or it all goes wrong. It actually works if you define the operators without the
(You don't need brackets now because the precedence of Unfortunately, that then breaks the existing help and sequence operators. |
||||
|
|
|
It doesn't explicitly exist, but you can do:
or
The difference between the two is that Also note that |
||||
|
|
|
Your link points to an
If your input variable is a vector, then
To access the help page for
The help page for
|
|||
|
|
Just as a prank, you can redefine the
... But you need to put the expressions in parentheses because the default precedence isn't like in C. Just remember to restore the old help function when you're done playing:
|
||||
|
|
|
I would take a look at the
|
|||||||
|
ifelse, or just a more compact form? – Carl Witthoft Jan 9 '12 at 14:49if (x>1) y=2 else y=3. Writingy=once has a certain appeal to it. – eykanal Jan 9 '12 at 14:54