web-dev-qa-db-ja.com

Rに三項演算子が存在しますか?

質問が尋ねるように、RにはCの 三項演算子 に似た制御シーケンスがありますか?その場合、どのように使用しますか?ありがとう!

159
eykanal

ifRの関数であり、最新の評価を返すため、if-elseは?:と同等です。

> a <- 1
> x <- if(a==1) 1 else 2
> x
[1] 1
> x <- if(a==2) 1 else 2
> x
[1] 2

Rの力はベクトル化です。三項演算子のベクトル化はifelseです。

> a <- c(1, 2, 1)
> x <- ifelse(a==1, 1, 2)
> x
[1] 1 2 1
> x <- ifelse(a==2, 1, 2)
> x
[1] 2 1 2

冗談で、Cスタイル?:を定義できます:

`?` <- function(x, y)
    eval(
      sapply(
        strsplit(
          deparse(substitute(y)), 
          ":"
      ), 
      function(e) parse(text = e)
    )[[2 - as.logical(x)]])

ここでは、括弧を気にする必要はありません。

> 1 ? 2*3 : 4
[1] 6
> 0 ? 2*3 : 4
[1] 4
> TRUE ? x*2 : 0
[1] 2
> FALSE ? x*2 : 0
[1] 0

しかし、割り当てには括弧が必要です:(

> y <- 1 ? 2*3 : 4
[1] 6
> y
[1] 1
> y <- (1 ? 2*3 : 4)
> y
[1] 6

最後に、cでも非常によく似た方法を実行できます。

`?` <- function(x, y) {
  xs <- as.list(substitute(x))
  if (xs[[1]] == as.name("<-")) x <- eval(xs[[3]])
  r <- eval(sapply(strsplit(deparse(substitute(y)), ":"), function(e) parse(text = e))[[2 - as.logical(x)]])
  if (xs[[1]] == as.name("<-")) {
    xs[[3]] <- r
        eval.parent(as.call(xs))
  } else {
    r
  }
}       

括弧を取り除くことができます:

> y <- 1 ? 2*3 : 4
> y
[1] 6
> y <- 0 ? 2*3 : 4
> y
[1] 4
> 1 ? 2*3 : 4
[1] 6
> 0 ? 2*3 : 4
[1] 4

これらは日常的に使用するためのものではありませんが、R言語の内部を学習するのに役立つかもしれません。

274
kohske

他のみんなが言ったように、ifelseを使用しますが、演算子を定義して、3項演算子の構文をほぼ持つことができます。

`%?%` <- function(x, y) list(x = x, y = y)
`%:%` <- function(xy, z) if(xy$x) xy$y else z

TRUE %?% rnorm(5) %:% month.abb
## [1]  0.05363141 -0.42434567 -0.20000319  1.31049766 -0.31761248
FALSE %?% rnorm(5) %:% month.abb
## [1] "Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"
# or, more generally
condition %?% value1 %:% value2

%記号なしで演算子を定義すると実際に機能するので、

`?` <- function(x, y) if(x) y[[1]] else y[[2]]
`:` <- function(y, z) list(y, z)

TRUE ? rnorm(5) : month.abb
## [1]  1.4584104143  0.0007500051 -0.7629123322  0.2433415442  0.0052823403
FALSE ? rnorm(5) : month.abb
## [1] "Jan" "Feb" "Mar" "Apr" "May" "Jun" "Jul" "Aug" "Sep" "Oct" "Nov" "Dec"

(これは、:の優先順位が?よりも低いため機能します。)

残念ながら、それは既存のヘルプとシーケンス演算子を壊します。

20
Richie Cotton

いたずらと同じように、can?演算子を(ほとんど)三項演算子のように再定義します(このIS A BAD IDEA):

`?` <- function(x, y) { y <-substitute(y); if(x) eval(y[[2]], parent.frame()) else eval(y[[3]], parent.frame()) }

x <- 1:3
length(x) ? (x*2) : 0
x <- numeric(0)
length(x) ? (x*2) : 0

for(i in 1:5) cat(i, (i %% 2) ? "Odd\n" : "Even\n")

...ただし、デフォルトの優先順位はCの優先順位とは異なるため、式を括弧で囲む必要があります。

再生が完了したら、古いヘルプ機能を復元することを忘れないでください。

rm(`?`)
5
Tommy

ifelseコマンドを見てみます。また、ベクトル化されているため、より適切に呼び出すことができます。車のデータセットを使用した例:

> cars$speed > 20
 [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[13] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[25] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
[37] FALSE FALSE FALSE FALSE FALSE FALSE FALSE  TRUE  TRUE  TRUE  TRUE  TRUE
[49]  TRUE  TRUE

> ifelse(cars$speed > 20, 'fast', 'slow')
 [1] "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow"
[11] "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow"
[21] "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow"
[31] "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow" "slow"
[41] "slow" "slow" "slow" "fast" "fast" "fast" "fast" "fast" "fast" "fast"
4
Paul Hiemstra

リンクはifステートメントを指します。

> x <- 1
> if(x < 2) print("Less than") else print("Greater than")
[1] "Less than"

入力変数がベクトルの場合、ifelseの方が適している可能性があります。

> x <- 1:3
> ifelse(x<=2, "Less than or equal", "Greater than")
[1] "Less than or equal" "Less than or equal" "Greater than"   

ifのヘルプページにアクセスするには、ifをバックティックに埋め込む必要があります。

?`if`

ifelseのヘルプページは次の場所にあります。

`?ifelse`
4
Andrie

明示的には存在しませんが、次のことができます。

set.seed(21)
y <- 1:10
z <- rnorm(10)

condition1 <- TRUE
x1 <- if(condition1) y else z

または

condition2 <- sample(c(TRUE,FALSE),10,TRUE)
x2 <- ifelse(condition2, y, z)

2つの違いは、condition1は長さ1の論理ベクトルでなければならず、condition2xy、およびzと同じ長さの論理ベクトルでなければならないことです。最初はyまたはz(オブジェクト全体)を返し、2番目はycondition2==TRUE)またはzcondition2==FALSE)の対応する要素を返します。

また、ifelseif、およびelseがすべて長さ1のベクトルである場合、conditiony/zよりも遅いことに注意してください。

4
Joshua Ulrich

ifは、次の方法で使用すると、ベクトル化されていないifelseのように機能します。

`if`(condition, doIfTrue, doIfFalse)

Ifelseよりもこれを使用する利点は、ベクトル化が邪魔になっている場合です(つまり、結果としてスカラーブール値とリスト/ベクトルのものがあります)

ifelse(TRUE, c(1,2), c(3,4))
[1] 1
`if`(TRUE, c(1,2), c(3,4))
[1] 1 2
2
UpsideDownRide