Another boneheaded request. I am trying to create contingency tables using recoded variables where any answer is coded as "1" and non-answers are coded as "0."
My original data might have looked like this: some variables are recoded from character strings, whereas others are recoded from numbers.
id var1 recode var2 recode2 ... var250 recode250
1 "hello" 1 1 1 ...
2 "hi" 1 <NA> 0 ...
3 0 <NA> 0 ...
4 "hola" 1 1 1 ...
I have written a bit of code to do this recoding of strings, which I check using a contingency table.
data$recode <- ifelse((as.numeric(data$var1)!=1), 1, 0) #RECODES STRINGS
table(data$recode)
0 1
1 3
But then, I also need to recode the NA's in all of my other variables to be 0. I tried to do this with another ifelse statement:
data <- ifelse(is.na(data), 0, 1)
The values seem to change, but now when I try to run the same contingency table, I get the following error message:
Error in data$recode : $ operator is invalid for atomic vectors
The key issue at hand is that I need to be able to produce contingency tables for all of my variables (i.e. report percentages and frequencies), so help on how to correctly recode all of my NA's (within a range of columns) into 0 so would be very helpful. Thanks!

as.numericwill only return NA on strings. Is that column really a factor? – joran Jul 16 '12 at 23:33as.numeric()on a factor variable that has string values with blanks instead of NA's, the blanks are returned as "1" and the strings are returned as values >1. If there is a better way to do all of this, I'm completely open to it. – roody Jul 16 '12 at 23:44