An alternative way of estimating a cumulative logistic model with complex survey data
Section 3. Discussion
When there is
more than one explanatory variable in the cumulative
logistic model then each one needs to be tested like
was in the previous section by adding an
analogous class variable for each. A general F test can be used for testing
whether every class variable is not significant (say at the 0.05 level). A
better approach with complex survey data may be to follow Korn and Graubard
(1990) and use the simple Bonferroni-adjusted
-test. For significance at the 0.05 level, one
would compute the
-values for every tested component of each
added class variable (there are three such in Table 2.3), then compare the
-value of the smallest of these to 0.05/the
number of components tested.
An advantage of
the design-sensitive model-based approach to fitting a simple cumulative
logistic model over the pseudo-maximum-likelihood approach is not apparent with
our NSDUH data. When the parallel-lines assumption doesn’t hold, and an
extended model is being fit, satisfying the first “equation” in (1.4) assures
us that
for
When
itself is a multi-level categorical variable
(so that one and only one component of
is 1 while the other components are 0), equation
(3.1) assures that the weighted mean of
for each
-category (i.e., component of
and cumulative level
equals its predicted value described by
which is a reasonable property. Equation (1.4)
is simply an extension of the property to more general
In our NSDUH
example, although not generally, using the design-sensitive approach was
slightly more efficient than using the pseudo-maximum-likelihood approach. This
can be seen by comparing the
-values of
(the inverses of their respective estimated
coefficients of variation) in Tables 2.1 and 2.2. When we ignore the
analysis weights, the strata, and the clustering (by setting the weights and
strata to 1, and treating each respondent as a primary sampling unit), this
result reverses as expected. The point here is that pseudo-maximum likelihood
with complex survey data is indeed “pseudo” (in this case that is likely
because of the impact of the weights on the estimates).
Finally,
the data set we created dropped responding observations with missing values of
the dependent and meds variables.
When fitting the extended model, this
is only valid (i.e., resulting estimates are asymptotically unbiased) when an
in-scope respondent − an adolescent who had treatment for depression
in the previous year − being dropped occurred completely at random.
When fitting the standard model, the
probability of being dropped can be a function only of whether an in-scope
adolescent has taken medication for depression in the previous year but nothing
else. This suggests it may have been prudent to add variables to the model that
are never missing even when they are not significant. If we add class variables
for age, sex, race/ethnicity, urbanicity, and family income (all of which have
values imputed for them when missing in the NSDUH) to our simple cumulative
logistic model, none are significant at the 0.05 level. The major results do
not change meaningfully (the estimate for
increases from roughly 0.45 to 0.50), although
that the
-value for meds using the design-sensitive
approach
is slightly smaller than that from using the
pseudo-maximum-likelihood approach
Appendix
/* PML is a data set of
adolescents NSDUH respondents in the 2006 to 2010 survey years who reported
having treatment for depression and whether they had taken drugs for
depression. Variables include:
Y = 1 treatment was extremely helpful; Y = 2 treatment helped a lot; Y =
3 some; Y = 4 a little;
Y = 5 not at all
meds = 1 had taken drugs for depression, 0
otherwise
VESTR variance stratum
VEPSU variance primary sampling unit
IDNUM respondent identification number
ANALWT the analysis weight
This set is employed for
pseudo-maximum-likelihood estimation of the simple cumulative
logistic model and to create the DS_SIMPLE data set, which is used for
design-sensitive estimation of the simple cumulative
logistic model, and it is employed to create DS_GENERAL data set, which
is used for design-sensitive estimation of the general cumulative
logistic model. */
DATA DS_SIMPLE; SET PML; BY VESTR VEPSU
IDNUM;
D = 0;
C = 1; IF Y < 2 THEN D = 1; OUTPUT;
C = 2; IF Y < 3 THEN D = 1; OUTPUT;
C = 3; IF Y < 4 THEN D = 1; OUTPUT;
C = 4; IF Y < 5 THEN D = 1; OUTPUT;
DATA DS_GENERAL; SET DS_SIMPLE;
M = 4;
IF C = 1 AND MEDS = 1 THEN M = 1;
IF C = 2 AND MEDS = 1 THEN M = 2;
IF C = 3 AND MEDS = 1 THEN M = 3;
/*The PROC below is used to produce Table 2.1*/
PROC SURVEYLOGISTIC DATA = PML; CLUSTER
VEPSU;
MODEL Y = MEDS;
STRATA VESTR; WEIGHT ANALWT; RUN;
/*The PROC below is used to produce Table 2.2*/
PROC SURVEYLOGISTIC DATA = DS_SIMPLE; CLASS
C;
CLUSTER VEPSU;
MODEL D(EVENT = '1') = C MEDS;
STRATA VESTR; WEIGHT ANALWT; RUN;
/*The PROC below is used to
produce Tables 2.3 and 2.4*/
PROC SURVEYLOGISTIC DATA =DS_GENERAL; CLASS
M C;
CLUSTER VEPSU;
MODEL D(EVENT = '1') = C MEDS M;
STRATA VESTR; WEIGHT ANALWT; RUN;
References
An, A. (2002). Performing
logistic regression on survey data with the new SURVEYLOGISTIC procedure. In Proceedings of the Twenty-Seventh Annual
SAS® Users Group International Conference, Cary, NC: SAS Institute Inc. (http://www2.sas.com/proceedings/sugi27/p258-27.pdf).
Binder, D.A.
(1983). On the variances of asymptotically normal estimators from
complex surveys. International Statistical Review, 51, 279-292.
Fuller, W.A. (1975). Regression analysis for sample
survey. Sankhyā-The
Indian Journal of Statistics, Series C, 37, 117-132.
Godambe, V.P., and Thompson, M.E. (1986). Parameters of
superpopulation and survey population: Their relationships and estimation. International Statistical Review, 54(2).
127-138.
Korn, E L., and Graubard, B.I. (1990). Simultaneous
testing of regression coefficients with complex survey data: Use of Bonferroni t statistics. American Statistician, 44, 270-276.
Kott, P.S. (2007). Clarifying some issues in the
regression analysis of survey data. Survey Research Methods, 1, 11-18.
Kott, P.S. (2018). A design-sensitive approach to
fitting regression models with complex survey data. Statistics Surveys, 12, 1-17.
Research Triangle Institute (2012). SUDAAN Language
Manual, Volumes 1 and 2, Release 11. Research Triangle Park, NC: Research
Triangle Institute.
SAS Institute Inc. (2015). SAS/STAT® 14.1
User’s Guide. Cary, NC: SAS Institute Inc.
Skinner, C.J. (1989). Domain means, regression and
multivariate analysis. In Analysis of Complex Surveys, (Eds.,
C.J. Skinner, D. Holt and T.M.F. Smith). Chichester: John Wiley
& Sons, Inc., 59-87.
Williams, R. (2005). Gologit2: A Program for Generalized
Logistic Regression/Partial Proportional Odds Models for Ordinal Variables.
Retrieved January 3, 2016 (http://www.nd.edu/~rwilliam/stata/gologit2.pdf).
ISSN : 1492-0921
Editorial policy
Survey Methodology publishes articles dealing with various aspects of statistical development relevant to a statistical agency, such as design issues in the context of practical constraints, use of different data sources and collection techniques, total survey error, survey evaluation, research in survey methodology, time series analysis, seasonal adjustment, demographic studies, data integration, estimation and data analysis methods, and general survey systems development. The emphasis is placed on the development and evaluation of specific methodologies as applied to data collection or the data themselves. All papers will be refereed. However, the authors retain full responsibility for the contents of their papers and opinions expressed are not necessarily those of the Editorial Board or of Statistics Canada.
Submission of Manuscripts
Survey Methodology is published twice a year in electronic format. Authors are invited to submit their articles in English or French in electronic form, preferably in Word to the Editor, (statcan.smj-rte.statcan@canada.ca, Statistics Canada, 150 Tunney’s Pasture Driveway, Ottawa, Ontario, Canada, K1A 0T6). For formatting instructions, please see the guidelines provided in the journal and on the web site (www.statcan.gc.ca/SurveyMethodology).
Note of appreciation
Canada owes the success of its statistical system to a long-standing partnership between Statistics Canada, the citizens of Canada, its businesses, governments and other institutions. Accurate and timely statistical information could not be produced without their continued co-operation and goodwill.
Standards of service to the public
Statistics Canada is committed to serving its clients in a prompt, reliable and courteous manner. To this end, the Agency has developed standards of service which its employees observe in serving its clients.
Copyright
Published by authority of the Minister responsible for Statistics Canada.
© Her Majesty the Queen in Right of Canada as represented by the Minister of Industry, 2019
Use of this publication is governed by the Statistics Canada Open Licence Agreement.
Catalogue No. 12-001-X
Frequency: Semi-annual
Ottawa