How can I force results on parameters that are dropping out due to
redundancy?
Thanks,
~Anne
Can you explain what you mean by 'reference category', please? I have
been trying to find an answer for some time, looking through many
resources. This is the first that I have been told about reference
category; the best I've found is redundancy.
Thank you, very much.
~Anne
In your example, the categorical variable had 4 levels. Those levels
can be coded with a series of 3 binary indicator variables (sometimes
called dummy variables). E.g., let V be the original variable, and C1-
C3 indicator variables for categories 1-3.
V C1 C2 C3
1 1 0 0
2 0 1 0
3 0 0 1
4 0 0 0
With this coding, the logistic regression would yield coefficients for
C1, C2, and C3. Those coefficients would give you the differences (in
the log-odds of the outcome event happening) for categories 1, 2, and
3 relative to category 4. I.e., category 4 (the one denoted by all
0's) is the reference category.
In the Exp(b) column of your output, you get odds ratios, but again,
they would be relative to category 4.
If you wanted to make category 1 the reference category, you would
omit C1 but include C4, like this:
V C2 C3 C4
1 0 0 0
2 1 0 0
3 0 1 0
4 0 0 1
And so on.
Finally, notice that in SPSS, you do not have to create these sets of
indicator variables. Instead, you can treat your original variable V
as categorical, and choose which of the levels you wish to use as the
reference category. The help files should have good details on how to
do that. (But note that even when you do it this way, SPSS creates a
set of k-1 indicator variables in the background, as described above.)
HTH.
--
Bruce Weaver
bwe...@lakeheadu.ca
www.angelfire.com/wv/bwhomedir
"When all else fails, RTFM."