I am coding a questionnaire on STATA and there is a question about Father Education with the option "Don't know" at the end. I am not sure how to code it, because I don't want to count it as missing variable, since the students that answer the questionnaire might have been raised by single moms, etc, and the "don't know" is a valid answer.
I am wondering if I should code it close to "No Education" as follow:
recode father_educ2 (3=0 "No schooling")(11=1 "Don't Know")(4=2 "Elementary") ///
(5=3 "Middle_School")(6=4 "High_School Incomplete")(7=5 "High_School Graduate") ///
(8=6 "Some College")(9=7 "Bachelor Degree")(10=8 "Graduate Degree") ///
(1 2 12 13=. "Missing data"), gen(father_educ)
or should I include it after Graduate Degree? any thoughts?
Thanks anyone!