.- help for ^logitem^ (user: ^[R] logitem^) .- Logitistic regression when binary outcome is measured with uncertainty ---------------------------------------------------------------------- ^logitem^ depvar varlist [^if^ exp] [^in^ range]^, sens(^sensvar | #^)^ ^spec(^specvar | #^)^ [ ^l^evel^(^#^)^ ^r^obust nolog noor ] The syntax of @predict@ following ^logistic^ is ^predict^ [type] newvarname [^if^ exp] [^in^ range] [^,^ statistic] where statistic is ^p^ predicted probability of a positive outcome; the default ^xb^ linear prediction ^stdp^ standard error of the linear prediction (*) ^n^umber sequential number of the covariate pattern covariate pattern) Unstarred statistics are available both in and out of sample; type "^predict^ ... ^if e(sample)^ ..." if wanted only for the estimation sample. Starred statistics are calculated for the estimation sample even when "^if e(sample)^" is not specified. Description ----------- ^logitem^ uses an EM algorithm to estimates a maximum-likelihood logit regression model when the outcome variable is measured with an imperfect test of known sensitivity and specificity. The method allows the sensitivity and specificity to vary across observations. Options ------- ^sens(^varname | #^)^ especifies the value or the sensitivity variable. ^spec(^varname | #^)^ especifies the value or the specificity variable. ^noor^ reports the estimated coefficients instead of odds ratios. This option affects how results are displayed, not how they are estimated. ^noor^ may be specified at estimation or when redisplaying previously estimated results. ^nolog^ supresses the output of the iteration log. ^level(^#^)^ specifies the confidence level, in percent, for calculation of confidence intervals of the odds ratios; see help @level@. ^robust^ specifies the Huber/White/sandwich estimator of variance is to be used in place of the traditional calculation; see ^[U] 23.11 Obtaining robust^ ^variance estimates^. ^robust^ combined with ^cluster()^ allows observations which are not independent within cluster (although they must be independent between clusters). Options for @predict@ ------------------- ^p^, the default, calculates the probability of a positive outcome. ^xb^ calculates the linear prediction. ^stdp^ calculates the standard error of the linear prediction. ^number^ creates newvar containing the sequential number of the covariate pattern. This calculation is automatically restricted to the estimation sample. Examples -------- . ^logitem testres exposure, sens(.8) spec(.9)^ . ^logitem low age lwt, sens(.8) spec(.9) nlog^ . ^logitem low age lwt, sens(.8) spec(.9) nolog noor^ . ^logitem , nolog noor^ Also see -------- Manual: ^[U] 23 Estimation and post-estimation commands^, ^[U] 29 Overview of model estimation in Stata^, ^[R] logistic^ On-line: help for @est@, @postest@, @logit@