Hallo,
ich sitze gerade an meiner ersten Methoden-Hausarbeit und bin mir bei einer eigentlich einfachen (aber sehr wichtigen) Variablenumformung unsicher: Ich will aus einer Liste von 11 Items zur Kindererziehung im EVS eine neue Autoritarismus-Variable zusammenfassen. Die Befragten konnten bis zu 5 Items aus der Liste wählen, welche jedoch alle einzeln in SPSS erfasst sind. Jeweils 3 Items geben autoritäre und nicht-autoritäre Antwortmöglichkeiten - Die Nennung einer solchen soll in der neuen Variable jeweils als +1 oder -1 kodiert sein. Eine Nennung der übrigen Items soll mit 0 kodiert werden. Daraus soll eine Variable mit Ausprägungen von -3 bis +3 entstehen.
Ich bin dabei wie folgt mit if Befehlen vorgegangen (es geht dabei um die Variablen v170 bis v180 aus dem EVS 2008) -->
*Autoritär.
if (v170 = 1 and v178 = 1 and v180 = 1) vAUTO = 3.
if (v170 = 1 and v178 = 1 and v180 = 0) vAUTO = 2.
if (v170 = 1 and v178 = 0 and v180 = 1) vAUTO = 2.
if (v170 = 0 and v178 = 1 and v180 = 1) vAUTO = 2.
if (v170 = 1 and v178 = 0 and v180 = 0) vAUTO =1.
if (v170 = 0 and v178 = 1 and v180 = 0) vAUTO =1.
if (v170 = 0 and v178 = 0 and v180 = 1) vAUTO =1.
*Nicht-Autoritär.
if (v171 = 1 and v174 = 1 and v175 = 1) vAUTO = -3.
if (v171 = 1 and v174 = 1 and v175 = 0) vAUTO = -2.
if (v171 = 1 and v174 = 0 and v175 = 1) vAUTO = -2.
if (v171 = 0 and v174 = 1 and v175 = 1) vAUTO = -2.
if (v171 = 1 and v174 = 0 and v175 = 0) vAUTO = -1.
if (v171 = 0 and v174 = 1 and v175 = 0) vAUTO = -1.
if (v171 = 0 and v174 = 0 and v175 = 1) vAUTO = -1.
variable labels vAUTO 'Autoritarismus-Skala'.
value labels vAUTO 3 '3'
2 '2'
1 '1'
-1 '-1'
-2 '-2'
-3 '-3'.
fre vAUTO.
Ist dies die richtige Vorgehensweise? Der Output wirkt auf mich jedenfalls falsch.
Mit freundlichen Grüßen