My question is rather simple. What I want is if A[i]!=NA, then C[i]=A[i], if A[i]=NA, then C[i]=B[i], however, I always get some error messages. Can somebody help me out?

A   B   C
NA  82.6    .
NA  127.2   .
NA  93.6    .
NA  105 .
NA  104 .
NA  90.6    .
NA  95.8    .
NA  103 .
NA  85.4    .
NA  81.5    .
NA  142.8   .
NA  102.3   .
NA  104 .
NA  103 .
NA  94.6    .
NA  113.8   .
NA  113.5   .
NA  74.5    .
NA  123.8   .
NA  94  .
NA  89.8    .
NA  74  .
NA  104 .
NA  100.5   .
NA  102.9   .
NA  132.5   .
NA  91  .
NA  92.5    .
NA  97  .
NA  90  .
54.6    51.7    .
NA  61  .
NA  80  .
NA  77.5    .
NA  NA  .
NA  80.6    .
NA  44.6    .
NA  37.6    .
NA  27  .
NA  NA  .
NA  NA  .
NA  NA  .
link|improve this question

1  
Let's start with 1) what code did you try and then 2) what error did you get – JD Long Sep 20 '11 at 15:58
1  
I edited your title to reflect the problem better – Joris Meys Sep 20 '11 at 15:59
feedback

1 Answer

up vote 5 down vote accepted

use is.na :

DF <- within(DF,
   C <- ifelse(!is.na(A),A,B)
)

with DF being your dataframe.

link|improve this answer
Thanks. It works! – Dan Sep 20 '11 at 16:02
won't DF <- transform(DF,C=ifelse(!is.na(A),A,B)) work (I think Df is a typo, you shouldn't need the Df$, and I have a minor aesthetic preference for transform ... – Ben Bolker Sep 20 '11 at 21:08
@BenBolker : nice catch. and whether you use transform or within, that basically the same. But it would work. – Joris Meys Sep 20 '11 at 22:56
feedback

Your Answer

 
or
required, but never shown

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