@jbowmanは、応力強度モデルとして知られているを推定する問題の(素晴らしい)標準ソリューションを提供します。θ=P(X<Y)
とが独立している場合の別のノンパラメトリックな代替案がBaklizi and Eidous(2006)で提案されました。以下に説明します。YXY
定義により、
θ=P(X<Y)=∫∞−∞FX(y)fY(y)dy,
ここで、はのCDFで、はの密度です。次に、とサンプルを使用して、とカーネル推定量、および結果として推定量を取得できます。FXXfYYXYFXfYθ
θ^=∫∞−∞F^X(y)f^Y(y)dy.
これは、ガウスカーネルを使用して次のRコードで実装されます。
# Optimal bandwidth
h = function(x){
n = length(x)
return((4*sqrt(var(x))^5/(3*n))^(1/5))
}
# Kernel estimators of the density and the distribution
kg = function(x,data){
hb = h(data)
k = r = length(x)
for(i in 1:k) r[i] = mean(dnorm((x[i]-data)/hb))/hb
return(r )
}
KG = function(x,data){
hb = h(data)
k = r = length(x)
for(i in 1:k) r[i] = mean(pnorm((x[i]-data)/hb))
return(r )
}
# Baklizi and Eidous (2006) estimator
nonpest = function(dat1B,dat2B){
return( as.numeric(integrate(function(x) KG(x,dat1B)*kg(x,dat2B),-Inf,Inf)$value))
}
# Example when X and Y are Cauchy
datx = rcauchy(100,0,1)
daty = rcauchy(100,0,1)
nonpest(datx,daty)
信頼区間を取得するには、次のようにこの推定量のブートストラップサンプルを取得できます。θ
# bootstrap
B=1000
p = rep(0,B)
for(j in 1:B){
dat1 = sample(datx,length(datx),replace=T)
dat2 = sample(daty,length(daty),replace=T)
p[j] = nonpest(dat1,dat2)
}
# histogram of the bootstrap sample
hist(p)
# A confidence interval (quantile type)
c(quantile(p,0.025),quantile(p,0.975))
他の種類のブートストラップ間隔も考慮される場合があります。