* Encoding: UTF-8. COMPUTE FS = SPF02+SPF07+SPF12+SPF15 . COMPUTE EC = SPF01+SPF05+SPF09+SPF11 . COMPUTE PT = SPF04+SPF10+SPF14+SPF16 . COMPUTE PD = SPF03+SPF06+SPF08+SPF13 . COMPUTE empathy=EC+PT+FS. Execute. *-------------------Normwerte-basierend auf n=6338----------------------------------. compute EC_norm=100+10*((EC-14.56)/3.10). compute PT_norm=100+10*((PT-14.33)/3.27). compute PD_norm=100+10*((PD-11.41)/3.50). compute FS_norm=100+10*((FS-14.01)/3.63). compute empathy_norm=100+10*((empathy-42.90)/7.77). VARIABLE LABELS FS_norm 'FS_norm'. VARIABLE LABELS EC_norm 'EC_norm'. VARIABLE LABELS PT_norm 'PT_norm'. VARIABLE LABELS PD_norm 'PD_norm'. VARIABLE LABELS empathy_norm 'empathy_norm'. Execute. *-------------------Altersgruppen bilden ------------------------------------------------. RECODE age (Lowest thru 15=1) (16 thru 21=2) (22 thru 26=3) (27 thru 33=4) (34 thru 40 = 5) (41 thru Highest=6) INTO Altersgruppe . VARIABLE LABELS Altersgruppe 'Altersgruppe'. EXECUTE. *-------------------Empathiegruppen bilden-------------------------------------------. RECODE empathy (Lowest thru 36=1) (37 thru 50=2) (51 thru Highest=3) INTO Empathiegruppe . VARIABLE LABELS Empathiegruppe 'Empathiegruppe'. EXECUTE.