My variable "Satisfaction" has levels 1, 2, 3, 4.
I want to combine 3,4 to create a new level: "0"; and 1,2 to create new level: "1"
I have done this:
combineLevels(EB734_May_2010$Satisfaction, levs = c("3","4"), newLabel =("0"))
After running the above code, I ran the levels function again, but still got 1,2,3,4. Is there anything I'm doing wrong?
Thanks