I have data like this
> data
satface1 satface2 satface3 satface 4 ... satface10
Agree Disagree Neutral
Disagree Strongly Disagree Strongly Agree
Agree Disagree Agree
Neutral Agree Neutral
Strongly Agree Neutral Disagree
and I want to recode
Strongly Disagree = 1, Disagree = 2, Neutral = 3, Agree = 4, Disagree = 5
and make them as new columns (name satface1_re, satface2_re....) How can I do that?
> data
satface1 satface2 satface3 (satface4...10) satface1_re satface2_re satface3_re
Agree Disagree Neutral 4 2 3
Disagree Strongly Disagree Strongly Agree 2 1 5
Agree Disagree Agree 4 2 4
Neutral Agree Neutral 3 4 3
Strongly Agree Neutral Disagree 5 3 2