knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) library(mets)
When looking at multivariate binomial data with the aim of learning about the dependence that is present, possibly after correcting for some covariates many models are available.
in the mets package you can fit the
Pairwise odds ratio model
Bivariate Probit model
Additive gamma random effects model
These last three models are all fitted in the mets package using composite likelihoods for pairs of data. The models can be fitted specifically based on specifying which pairs one wants to use for the composite score.
The models are described in futher details in the binomial-twin vignette.
We start by simulating family data with and additive gamma structure on ACE form. Here 10000 families consisting of two parents and two children. The response is ybin and there is one covariate x.
library(mets) library(timereg) set.seed(100) data <- simbinClaytonOakes.family.ace(500,2,1,beta=NULL,alpha=NULL) data$number <- c(1,2,3,4) data$child <- 1*(data$number==3) head(data)
We fit the marginal models, and here find a covariate effect at 0.3 for x. The marginals can be specified excatly as one wants.
aa <- margbin <- glm(ybin~x,data=data,family=binomial()) summary(aa)
For the additive gamma of this type we set-up the random effects included in such a family to make the ACE valid using some special functions for this.
The model is constructe with one enviromental effect shared by all in the family and 8 genetic random effects with size (1/4) genetic variance. Looking at the first family we see that the mother and father both share half the genes with the children and that the two children also share half their genes with this specification. Below we also show an alternative specification of this model using all pairs.
# make ace random effects design out <- ace.family.design(data,member="type",id="cluster") out$pardes head(out$des.rv,4)
We can now fit the model calling the two-stage function
# fitting ace model for family structure ts <- binomial.twostage(margbin,data=data,clusters=data$cluster, theta=c(2,1), random.design=out$des.rv,theta.des=out$pardes) summary(ts) # true variance parameters c(2,1) # total variance 3
We now specify the same model via extracting all pairs.
The random
effecs structure is typically simpler when just looking at pairs, but we start by
specifying the random effects jointly for whole family.
A special function writes up all combinations of pairs.
There are 6 pairs within each family, and we keep track of
who belongs to the different families. We first simply give the
pairs and we then should get the same result as before.
mm <- familycluster.index(data$cluster) head(mm$familypairindex,n=20) pairs <- mm$pairs dim(pairs) head(pairs,12)
Now with the pairs we fit the model
tsp <- binomial.twostage(margbin,data=data,clusters=data$cluster,theta=c(2,1),detail=0, random.design=out$des.rv,theta.des=out$pardes,pairs=pairs) summary(tsp)
Here a random sample of pairs are given instead and we get other estimates.
set.seed(100) ssid <- sort(sample(1:nrow(pairs),nrow(pairs)/2)) tsd <- binomial.twostage(aa,data=data,clusters=data$cluster, theta=c(2,1),step=1.0, random.design=out$des.rv,iid=1,Nit=10, theta.des=out$pardes,pairs=pairs[ssid,]) summary(tsd)
To specify such a model when only the pairs are available we show how to specify the model. We here use the same marginal "aa" to make the results comparable. The marginal can also be fitted based on available data.
We start by selecting the data related to the pairs, and sets up new id's and to start we specify the model using the full design with 9 random effects. Below we show how one can use with only the random effects needed for each pair, which is typically simpler.
head(pairs[ssid,]) ids <- sort(unique(c(pairs[ssid,]))) pairsids <- c(pairs[ssid,]) pair.new <- matrix(fast.approx(ids,c(pairs[ssid,])),ncol=2) head(pair.new) dataid <- dsort(data[ids,],"cluster") outid <- ace.family.design(dataid,member="type",id="cluster") outid$pardes head(outid$des.rv)
Now fitting the model with the data set up
aa <- glm(ybin~x,data=dataid,family=binomial()) tsdid <- binomial.twostage(aa,data=dataid,clusters=dataid$cluster, theta=c(2,1),random.design=outid$des.rv,theta.des=outid$pardes,pairs=pair.new) summary(tsdid)
We now specify the design specifically using the pairs. The random.design and design on the parameters are now given for each pair, as a 3 dimensional matrix. with a direct specification of random.design and the design on the parameters theta.design. In addition we need also to give the number of random effects for each pair. These basic things are constructed by certain functions for the ACE design.
pair.types <- matrix(dataid[c(t(pair.new)),"type"],byrow=T,ncol=2) head(pair.new,7) head(pair.types,7) ### theta.des <- rbind( c(rbind(c(1,0), c(1,0), c(0,1), c(0,0))), c(rbind(c(0.5,0),c(0.5,0),c(0.5,0),c(0,1)))) random.des <- rbind( c(1,0,1,0),c(0,1,1,0), c(1,1,0,1),c(1,0,1,1)) mf <- 1*(pair.types[,1]=="mother" & pair.types[,2]=="father") ## pair, rv related to pairs, theta.des related to pair pairs.new <- cbind(pair.new,(mf==1)*1+(mf==0)*3,(mf==1)*2+(mf==0)*4,(mf==1)*1+(mf==0)*2,(mf==1)*3+(mf==0)*4)
pairs.new is matrix with
columns 1:2 giving the indeces of the data points
columns 3:4 giving the indeces of the random.design for the different pairs
columns 5 giving the indeces of the theta.des written as rows
columns 6 giving the number of random variables for this pair
The length of all rows of theta.des are the maximum number of random effects $\times$ the number of parameters. These two numbers are given in the call. In this case 4 $\times$ 2. So theta.des has rows of length $8$, possibly including some 0's for rows not relevant due to fewer random effects, as is the case here for pairs that do not share genetic effects.
For pair 1 that is a mother/farther pair, we see that they share 1 environmental random effect of size 1. There are also two genetic effects that are unshared between the two. So a total of 3 random effects are needed here. The theta.des relates the 3 random effects to possible relationships in the parameters. Here the genetic effects are full and so is the environmental effect. In contrast we also consider a mother/child pair that share half the genes, now with random effects with (1/2) gene variance. We there need 4 random effects, 2 non-shared half-gene, 1 shared half-gene, and one shared full environmental effect.
# 3 rvs here random.des theta.des head(pairs.new)
Now fitting the model, and we see that it is a lot quicker due to the fewer random effects needed for pairs. We need to also specify the number of parameters in this case.
tsdid2 <- binomial.twostage(aa,data=dataid,clusters=dataid$cluster, theta=c(2,1), random.design=random.des,theta.des=theta.des,pairs=pairs.new,dim.theta=2) summary(tsdid2)
The same model can be specifed even simpler via the kinship coefficient. For this speicification there are 4 random effects for each pair, but some have variance 0. The mother-father pair, here shares a random effect with variance 0, and have two non-shared genetic effects with full variance, in addition to a fully shared environmental effect.
kinship <- rep(0.5,nrow(pair.types)) kinship[pair.types[,1]=="mother" & pair.types[,2]=="father"] <- 0 head(kinship,n=10) out <- make.pairwise.design(pair.new,kinship,type="ace")
tsdid3 <- binomial.twostage(aa,data=dataid,clusters=dataid$cluster, theta=c(2,1)/9,random.design=out$random.design, theta.des=out$theta.des,pairs=out$new.pairs,dim.theta=2) summary(tsdid3)
library(mets) set.seed(1000) data <- simbinClaytonOakes.family.ace(500,2,1,beta=NULL,alpha=NULL) head(data) data$number <- c(1,2,3,4) data$child <- 1*(data$number==3) mm <- familycluster.index(data$cluster) head(mm$familypairindex,n=20) pairs <- mm$pairs dim(pairs) head(pairs,12)
dtypes <- interaction( data[pairs[,1],"type"], data[pairs[,2],"type"]) dtypes <- droplevels(dtypes) table(dtypes) dm <- model.matrix(~-1+factor(dtypes))
Now with the pairs we fit the model
aa <- glm(ybin~x,data=data,family=binomial()) tsp <- binomial.twostage(aa,data=data, clusters=data$cluster, theta.des=dm,pairs=cbind(pairs,1:nrow(dm))) summary(tsp)
To fit the pairwise odds-ratio model in the case of a pair-specification there are two options for fitting the model.
Starting by the second option. We need to start by specify the design of the odds-ratio of each pair. We set up the data and find all combinations within the pairs. Subsequently, we remove all the empty groups, by grouping together the factor levels 4:9, and then we construct the design.
tdp <-cbind( dataid[pair.new[,1],],dataid[pair.new[,2],]) names(tdp) <- c(paste(names(dataid),"1",sep=""), paste(names(dataid),"2",sep="")) tdp <-transform(tdp,tt=interaction(type1,type2)) dlevel(tdp) drelevel(tdp,newlevels=list(mother.father=4:9)) <- obs.types~tt dtable(tdp,~tt+obs.types) tdp <- model.matrix(~-1+factor(obs.types),tdp)
We then can fit the pairwise model using the pairs and the pair-design for descrbing the OR. The results are consistent with the the ACE model as the mother-father have a lower dependence as is due only the environmental effects. All other combinations should have the same dependence as also seem to be the case.
To fit the OR model it is generally recommended to use the var.link to use the parmetrization with log-odd-ratio regression.
###porpair <- binomial.twostage(aa,data=dataid,clusters=dataid$cluster, ### theta.des=tdp,pairs=pair.new,model="or",var.link=1) ###summary(porpair)
sessionInfo()
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.