次のようなデータセットがあるとします。
y <- c(0,0,1,2,2,1,0,1)
a <- c(0,2,1,1,0,2,0,3)
dat <- data.frame(y, a)
f <- digamma(a+y)
条件を使っての値を計算したい
if(a>0 & y==0) then f
if(a==0 & y>0) then f
if (a==0 & y==0) then f = 1
Rコードを使用してどのように行うことができますか?
次のようなデータセットがあるとします。
y <- c(0,0,1,2,2,1,0,1)
a <- c(0,2,1,1,0,2,0,3)
dat <- data.frame(y, a)
f <- digamma(a+y)
条件を使っての値を計算したい
if(a>0 & y==0) then f
if(a==0 & y>0) then f
if (a==0 & y==0) then f = 1
Rコードを使用してどのように行うことができますか?