Hi all,
I want to look if more educated people are more altruistic. Can I do this with this code?
In a survey, I asked participants which education level they have and I tried to generate the education variable in this way.
gen edu=1 if education=="Still in school"
replace edu=2 if education=="Secondary School certificate"
replace edu=3 if education=="High School dilpoma"
replace edu=4 if education=="Bachelor degree"
replace edu=5 if education=="Master degree"
replace edu=6 if education=="P.h.D"
regress altruism_mean edu
Depending on the coefficient, can I now say that the more educated the person, the more/or less altruistic the person is (if the coefficient is significant)?
Many thanks in advance.
I want to look if more educated people are more altruistic. Can I do this with this code?
In a survey, I asked participants which education level they have and I tried to generate the education variable in this way.
gen edu=1 if education=="Still in school"
replace edu=2 if education=="Secondary School certificate"
replace edu=3 if education=="High School dilpoma"
replace edu=4 if education=="Bachelor degree"
replace edu=5 if education=="Master degree"
replace edu=6 if education=="P.h.D"
regress altruism_mean edu
Depending on the coefficient, can I now say that the more educated the person, the more/or less altruistic the person is (if the coefficient is significant)?
Many thanks in advance.
Comment