R/pdep.R

pdep <-
function(x,y,alpha=.05){
#
# For two dependent variables, x and y,
# estimate p=P(X<Y)
#
dif<-(x<y)
temp<-binomci(y=dif)
phat<-temp$phat
ci<-temp$ci
list(phat=phat,ci=ci)
}
musto101/wilcox_R documentation built on May 23, 2019, 10:52 a.m.