Suppose you have a vector -- you do a calculation on the vector -- many of the elements return "NA" -- how do you identify these "NA"s and change them to some usable integer

link|improve this question

Language is R by the way – user446667 Sep 27 '11 at 17:11
possible duplicate of Test for NA and select values based on result – Andrie Sep 27 '11 at 17:13
I do not think that selective extraction implies that selective assignment will succeed, so I am not voting to close. – DWin Sep 27 '11 at 17:44
The solution below is fine -- but of course you should be very very careful about this. We're assuming that you've thought carefully about what "usable integer" is appropriate for your problem ... – Ben Bolker Sep 27 '11 at 20:55
I actually ended up converting various unuseable datapoints (non-responses) to NA then using the na.omit function to eliminate the rows containing NA before regressions -- thanks for introducing me to the .na type though. Let me know if there is a neater way of dealing with unusable datapoints. – user446667 Sep 28 '11 at 19:14
feedback

1 Answer

up vote 4 down vote accepted

Assuming that your data is in dat (could be a vector, matrix, or data frame):

dat[is.na(dat)]<-0

replaces all NA entries of dat with 0.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.