> -----Original Message-----
> 
> You can check for an empty vector as follows:
> ...
> vals <- apply(plabor[c("colA","colB","colC")],1,function(x) 
> length(na.omit(x)))
> vals # [1] 3 0 3 2 
> <- ifelse(vals>0, plabor$colD, NA) 
> 
plabor

A slightly more compact variant that avoids the intermediate 'vals' variable is 
to apply an anonymous function that does the check internally:

plabor$colD <- apply(plabor, 1, function(x) if(all(is.na(x))) NA else prod(x, 
na.rm=TRUE))

S Ellison




*******************************************************************
This email and any attachments are confidential. Any use, copying or
disclosure other than by the intended recipient is unauthorised. If 
you have received this message in error, please notify the sender 
immediately via +44(0)20 8943 7000 or notify postmas...@lgcgroup.com 
and delete this message and any copies from your computer and network. 
LGC Limited. Registered in England 2991879. 
Registered office: Queens Road, Teddington, Middlesex, TW11 0LY, UK
______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to