Nothing
# modified on July 15, 2016
# (1) revise the definition of zi
# zi1=abs(xi1-mean(xi1))
# zi0=abs(xi0-mean(xi0))
# modified on Dec. 13, 2015
# (1) rename 'y' to 'group'
# (2) renmae 'x' to 'value'
# (3) rename 'scoreTestVarLevene.default' to 'iAWvar.Levene'
#
# created on July 19, 2015
# scor test of logistic regresssion based on
# Levene's test to test equality of variance
#
# test for equal variance
# group - vector of binary values
# value - continuous variable
iAWvar.Levene=function(value,group)
{
u.group=sort(unique(group))
if(length(u.group)!=2)
{
stop("group must take 2 and only 2 values\n")
}
if(!identical(u.group, c(0, 1)))
{
stop("group must only take values 0 or 1\n")
}
if(length(value) != length(group))
{
stop("value must have the same length as group\n")
}
pos1=which(group==1)
pos0=which(group==0)
value1=value[pos1]
value0=value[pos0]
# get mean
m.value1=mean(value1, na.rm=TRUE)
m.value0=mean(value0, na.rm=TRUE)
# mean centering
value1.2=abs(value1-m.value1)
value0.2=abs(value0-m.value0)
z=rep(NA, length(value))
z[pos1]=value1.2
z[pos0]=value0.2
groupbar=mean(group, na.rm=TRUE)
U2=sum((group-groupbar)*z, na.rm=TRUE)
zbar=mean(z, na.rm=TRUE)
varU2 = groupbar*(1-groupbar)*sum((z-zbar)^2, na.rm=TRUE)
T2 = U2^2/varU2
pval= 1-pchisq(T2, df=1)
res=list(U2=U2, varU2=varU2, stat=T2, pval=pval, z=z, zbar=zbar)
return(res)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.