Hello. I am trying to group traffic crash injury severity into a new variable.
Basically, my current severity variable is coded as:
'0'= no injury
'1'=minor injury
'2'=moderat injury
'3'=major injury
'4'=major injury unconcious
'5'=fatal injury
Now, I want to determine a way to group these as follows:
New Variable, coded either 'A','B','C','D','None', where:
A= anything from original code that was found in '1','2','3','4','5'
B='2','3','4','5'
C='3','4','5'
D='5'
None='0'
Is there a way to recode the original variable, say it's called INJ (coded '0','1','2','3','4','5'), to the new variable, say INJGRP(coded 'A','B','C','D','None')
Thanks to anyone that can provide me with some help