Displaying 1 result from an estimated 1 matches for "native1".
Did you mean:
native
2013 Sep 22
2
Coding several dummy variables into a single categorical variable
Colleagues,
I have generated several dummy variables:
n$native0 <- 1 * (n$re=="white" & n$usborn=="yes")
n$native1 <- 1 * (n$re=="afam" & n$usborn=="yes")
n$native2 <- 1 * (n$re=="carib" & n$usborn=="yes")
n$native3 <- 1 * (n$re=="carib" & n$usborn=="no")
I would now like to combine these into a single categorical variable where t...