
glmer
function in package lme4
, similar to the computational approach by Macaskill (2004) and Harbord et al. (2007). Thus the normal-normal approximation and the MCMC approach can be avoided. A single covariate can be incorporated into the model, users should choose if it affects both the sensitivity and specificity, only sensitivity or only specificity. Results are nearly identical to those by using the Proc NLMIXED
in SAS.
fit.bivar(TP,FN,TN,FP,study,data,mods=NULL,covarying="both",...)
"print"(x,...)
"summary"(object,level=0.95,...)
print
).summary
).summary
). Default is 0.95fit.bivar
,basically a list with the model speficication and conventional model fit results, such as goodness of fit statistics and parameter estimates, etc.The print functions displays the basic model fit outcomes, including the estimates of the combined logit-transformed sensitivity and specificity, as well as those at different levels of the covariate if there is any; the random effects coefficients shown as variance-covariance matrix of the combined logit-transformed sensitivity and specificity; and the goodness of fit statistics are also given. The print function returns no object.The summary function shows additional information such as standard errors and covariance matrix of the parameters which can be useful later in drawing the SROC curve.
lmer
.
## fit bivariate model without covariate to data from a review(Nishimura 2007)
data(ccp)
(ccp.without<-fit.bivar(TP=TP,FN=FN,TN=TN,FP=FP,study=study_id,data=ccp))
summary(ccp.without)
## fit bivariate model with covariate "generation" to the same data set.
(ccp.generation<-fit.bivar(TP=TP,FN=FN,TN=TN,FP=FP,study=study_id,data=ccp,mods=generation,
covarying="both"))
summary(ccp.generation)
##fit bivariate model with covariate "Test" to the data from Schuetz(2010)
##comparing the accuracy of CI and MRI
data(Schuetz)
(CTvsMRI<-fit.bivar(TP=tp,FN=fn,TN=tn,FP=fp,study=Study_ID,data=Schuetz,mods=Test))
summary(CTvsMRI)
Run the code above in your browser using DataLab