ZTcomb | R Documentation |
Z
-test for Cuzick and Edwards T_{comb}
statisticAn object of class "htest"
performing a z
-test for Cuzick and Edwards T_{comb}
test statisticin disease clustering,
where T_{comb}
is a linear combination of some T_k
tests.
For disease clustering, \insertCitecuzick:1990;textualnnspat developed a k
-NN test T_k
based on
number of cases among k
NNs of the case points, and also proposed a test combining various T_k
tests,
denoted as T_{comb}
.
See page 87 of (\insertCitecuzick:1990;textualnnspat) for more details.
Under RL of n_1
cases and n_0
controls to the given locations in the study region,
T_{comb}
approximately has N(E[T_{comb}],Var[T_{comb}])
distribution for large n_1
.
The argument cc.lab
is case-control label, 1 for case, 0 for control, if the argument case.lab
is NULL
,
then cc.lab
should be provided in this fashion, if case.lab
is provided, the labels are converted to 0's
and 1's accordingly.
The argument klist
is the vector
of integers specifying the indices of the T_k
values used
in obtaining the T_{comb}
.
The logical argument nonzero.mat
(default=TRUE
) is for using the A
matrix if FALSE
or just the matrix of nonzero
locations in the A
matrix (if TRUE
) in the computations.
The logical argument asy.cov
(default=FALSE
) is for using the asymptotic covariance or the exact (i.e., finite
sample) covariance for the vector of T_k
values used in Tcomb
in the standardization of T_{comb}
.
If asy.cov=TRUE
, the asymptotic covariance is used, otherwise the exact covariance is used.
See also (\insertCiteceyhan:SiM-seg-ind2014,cuzick:1990;textualnnspat) and the references therein.
ZTcomb(
dat,
cc.lab,
klist,
alternative = c("two.sided", "less", "greater"),
conf.level = 0.95,
case.lab = NULL,
nonzero.mat = TRUE,
asy.cov = FALSE,
...
)
dat |
The data set in one or higher dimensions, each row corresponds to a data point. |
cc.lab |
Case-control labels, 1 for case, 0 for control |
klist |
|
alternative |
Type of the alternative hypothesis in the test, one of |
conf.level |
Level of the upper and lower confidence limits, default is |
case.lab |
The label used for cases in the |
nonzero.mat |
A logical argument (default is |
asy.cov |
A logical argument (default is |
... |
are for further arguments, such as |
A list
with the elements
statistic |
The |
p.value |
The |
conf.int |
Confidence interval for the Cuzick and Edwards |
estimate |
Estimate of the parameter, i.e., the Cuzick and Edwards |
null.value |
Hypothesized null value for the Cuzick and Edwards |
alternative |
Type of the alternative hypothesis in the test, one of |
method |
Description of the hypothesis test |
data.name |
Name of the data set, |
Elvan Ceyhan
Tcomb
, EV.Tcomb
, and covTcomb
n<-20 #or try sample(1:20,1)
Y<-matrix(runif(3*n),ncol=3)
cls<-sample(0:1,n,replace = TRUE) #or try cls<-rep(0:1,c(10,10))
kl<-sample(1:5,3) #try also sample(1:5,2)
ZTcomb(Y,cls,kl)
ZTcomb(Y,cls,kl,method="max")
ZTcomb(Y,cls,kl,nonzero.mat=FALSE)
ZTcomb(Y,cls+1,kl,case.lab = 2,alt="l")
ZTcomb(Y,cls,kl,conf=.9,alt="g")
ZTcomb(Y,cls,kl,asy=TRUE,alt="g")
#cls as a factor
na<-floor(n/2); nb<-n-na
fcls<-rep(c("a","b"),c(na,nb))
ZTcomb(Y,fcls,kl,case.lab="a")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.