funs.overall.seg | R Documentation |
Two functions: overall.seg.ct
and overall.seg
.
All functions are objects of class "Chisqtest"
but with different arguments (see the parameter list below).
Each one performs hypothesis tests of deviations of
cell counts from the expected values under RL or CSR for all cells (i.e., entries) combined in the NNCT or TCT.
That is, each test is one of Dixon's or Types I-IV overall test of segregation based on NNCTs or TCTs
for k \ge 2
classes.
Each overall test is based on the chi-squared approximation of the corresponding quadratic form
and are due to \insertCitedixon:1994,dixon:NNCTEco2002;textualnnspat
and to \insertCiteceyhan:SJScorrected2010,ceyhan:jkss-posthoc-2017;textualnnspat, respectively.
All functions exclude some row and/or column of the TCT, to avoid ill-conditioning of the covariance matrix
of the NNCT (for its inversion in the quadratic form), see the relevant functions under See also section below.
The type="dixon"
or "nnct"
refers to Dixon's overall test of segregation, and
type="I"
-"IV"
refers to types I-IV overall tests, respectively.
Each function yields the test statistic, p
-value and df
which is k(k-1)
for type II and Dixon's test
and (k-1)^2
for the other types, description of the
alternative with the corresponding null values (i.e., expected values) of TCT entries, sample estimates (i.e., observed values) of the entries in TCT.
The functions also provide names of the test statistics, the description of the test and the data set used.
The null hypothesis is that all N_{ij}
or T_{ij}
entries for the specified type are equal to their expected values
under RL or CSR, respectively.
See also (\insertCitedixon:1994,dixon:NNCTEco2002,ceyhan:eest-2010,ceyhan:SJScorrected2010,ceyhan:jkss-posthoc-2017;textualnnspat) and the references therein.
overall.seg.ct(ct, covN, type)
overall.seg(dat, lab, type, ...)
ct |
A nearest neighbor contingency table, used in |
covN |
The |
type |
The type of the overall test with no default.
Takes on values |
dat |
The data set in one or higher dimensions, each row corresponds to a data point,
used in |
lab |
The |
... |
are for further arguments, such as |
A list
with the elements
statistic |
The overall chi-squared statistic for the specified type |
stat.names |
Name of the test statistic |
p.value |
The |
df |
Degrees of freedom for the chi-squared test, which is |
estimate |
Estimates of the parameters, NNCT for Dixon's test and type I-IV TCT for others. |
est.name , est.name2 |
Names of the estimates, former is a longer description of the estimates than the latter. |
null.value |
Matrix of hypothesized null values for the parameters which are expected values of the
the |
null.name |
Name of the null values |
method |
Description of the hypothesis test |
ct.name |
Name of the contingency table, |
data.name |
Name of the data set, |
Elvan Ceyhan
overall.nnct.ct
, overall.nnct
, overall.tct.ct
and overall.tct
n<-20 #or try sample(1:20,1)
Y<-matrix(runif(3*n),ncol=3)
ipd<-ipd.mat(Y)
cls<-sample(1:2,n,replace = TRUE) #or try cls<-rep(1:2,c(10,10))
ct<-nnct(ipd,cls)
W<-Wmat(ipd)
Qv<-Qvec(W)$q
Rv<-Rval(W)
varN<-var.nnct(ct,Qv,Rv)
covN<-cov.nnct(ct,varN,Qv,Rv) #default is byrow
type<-"dixon" #try also "nnct", I", "II", "III", and "IV"
overall.seg(Y,cls,type)
overall.seg(Y,cls,type,method="max")
overall.seg(Y,cls,type="I")
overall.seg.ct(ct,covN,type)
overall.seg.ct(ct,covN,type="I")
#cls as a factor
na<-floor(n/2); nb<-n-na
fcls<-rep(c("a","b"),c(na,nb))
ct<-nnct(ipd,fcls)
overall.seg(Y,fcls,type="I")
overall.seg.ct(ct,covN,type)
#############
n<-40
Y<-matrix(runif(3*n),ncol=3)
ipd<-ipd.mat(Y)
cls<-sample(1:4,n,replace = TRUE) #or try cls<-rep(1:2,c(10,10))
ct<-nnct(ipd,cls)
W<-Wmat(ipd)
Qv<-Qvec(W)$q
Rv<-Rval(W)
varN<-var.nnct(ct,Qv,Rv)
covN<-cov.nnct(ct,varN,Qv,Rv)
overall.seg(Y,cls,type="I")
overall.seg.ct(ct,covN,type)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.