Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The variables in my database are coded as "Yes" and "No" but I would like to have as "1" and "2".

I tried to create a new variable using ifelse but when I list'ed it, it didn't work, as follows:

CA <- ifelse((CANCER == "Yes"),1
ifelse(( CANCER == "No"),2 )))

list(CA)

[[1]]
NULL
share|improve this question
1  
Why? I always prefer more informative labels like Yes and No; they're more informative and so I'm able to remember what they mean when I have to revisit an analysis six months later. I'm not aware of any advantage of switching to numeric codes, save perhaps file size. – Aaron Aug 20 '12 at 1:39

migrated from stats.stackexchange.com Aug 20 '12 at 7:48

4 Answers

If you want to use ifelse,

CA <- ifelse(CANCER=="Yes", 1, 2)
share|improve this answer

Assuming

levels(CANCER) 

returns

Levels: yes no

it's probably easiest in your case if you just say

CA<-factor(as.numeric(CANCER))

However, generally you can also use

Cancer<-factor(CANCER)

Than assuming

levels(Cancer) 

returns

Levels: yes no

You can change the levels thus

levels(Cancer)[1]<-"1"
levels(Cancer)[2]<-"2"

or switch labels accordingly.

share|improve this answer

We need to know if your variable is a factor. Suppose

foo <- c("yes","no","no","yes")

If is.factor(foo) returns TRUE, e.g., if you did foo <- factor(foo), then use

levels(foo) <- c("2", "1")

else use

foo[foo == "yes"] <- 1
foo[foo == "no"] <- 2

Also, list() doesn't do what (I think) you think it does. If you want to view the value of foo, just type in foo. After executing the code above...

foo
[1] 1 2 2 1
share|improve this answer
I'm not sure that's clever: is.factor(foo) FALSE is.character(foo) TRUE – Momo Aug 19 '12 at 23:38
I'm pretty sure this works when foo is a factor too. – Aaron Aug 20 '12 at 1:42
@Momo, you're right, we don't know if the OP's variable is a factor or not. I adjusted my answer. – Jack Tanner Aug 20 '12 at 2:26
Great, but I only meant the result of relabeling should be a factor rather than a character vector. – Momo Aug 20 '12 at 2:35
@Momo, I disagree, actually - the result of relabeling should be a factor iff the original vector was a factor. No need to change data types as a side effect of relabeling. – Jack Tanner Aug 20 '12 at 2:41
show 2 more comments

If you coerce to a factor with the levels set in the order "yes","no":

foo <- factor(c("yes","no","no","yes"),levels=c("yes","no"))

You can simply coerce to numeric:

as.numeric(foo)

Which gives you:

[1] 1 2 2 1
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.