Could someone help me regarding the use of ifelse.
I have a data.frame (dat) with a categorical variable/factor called Q1 (dat$Q1). dat$Q1 was coded as 1,2,3 or 4. I need to create a new column data$new1 based on the following rule:
if dat$Q1 == 3 then dat$new1 should be 1. otherwise, dat$new1 should be 0.
What is the most efficient way of doing this please?