Hallo Zusammen,
ich schreibe momentan meine Bachelorarbeit und komme bei dem Erstellen einer neuen Variable aus 7 bereits vorhandenen Variablen nicht weiter. Die Variablen mi05 bis mi11 beinhalten Einstellungen von Menschen über den Zuzug verschiedener Personengruppen. Aus diesen Variablen möchte ich eine übergeordnete Variable erstellen (influx) , die die Einstellungen der Menschen insgesamt zeigt. Alle 7 Variablen haben die gleichen 3 Ausprägungen in der gleichen Reihenfolge, die ich gerne in der neuen Variable übernehmen möchte.
Im folgenden ist das aus meinem Do-File, was ich selbst versucht habe. Ich habe aber eher das Gefühl, dass es nicht richtig ist. Deswegen wär es super wenn mir da jemand weiterhelfen könnte. Ist das was ich gemacht habe richtig? Und woher weiß ich ob das richtige Ergebnis habe? Gibt es einen einfacheren Weg?
generate influx = .
replace influx = 1 if mi05 ==1
replace influx = 1 if mi06 ==1
replace influx = 1 if mi07 ==1
replace influx = 1 if mi08 ==1
replace influx = 1 if mi09 ==1
replace influx = 1 if mi10 ==1
replace influx = 1 if mi11 ==1
replace influx = 2 if mi05 ==2
replace influx = 2 if mi06 ==2
replace influx = 2 if mi07 ==2
replace influx = 2 if mi08 ==2
replace influx = 2 if mi09 ==2
replace influx = 2 if mi10 ==2
replace influx = 2 if mi11 ==2
replace influx = 3 if mi05 ==3
replace influx = 3 if mi06 ==3
replace influx = 3 if mi07 ==3
replace influx = 3 if mi08 ==3
replace influx = 3 if mi09 ==3
replace influx = 3 if mi10 ==3
replace influx = 3 if mi11 ==3
tab influx, m
Danke und liebe Grüße
Kathi