I have two dummy variables, X1 and X2. Each one is coded into 0 or 1. Here is the breakdown:
alcohol use
X7 X8
none 0 0
moderate 1 0
severe 0 1
I don't understand how to tell SPSS that when X7 is 0, AND X8 is 1, that means 'Severe'. The problem arises when I try to do descriptive statistics. It gives me a mean of the 1's and 0's, which is a useless value of 0.5. How are descriptive statistics shown with dummy variables, and especially when the dummy variable is coded across two separate variables?
z) based on a logical expression likeif(x7==0 & x8==1) then z=1, whereseveredenoted as 1. I am not sure about how to do this inSPSS, but it is easy to do so inExceland other statistical software. If you set a variable as ordinal or nominal,SPSSwould not provide the mean but the frequency. – Randel Sep 22 '13 at 17:17