[R] logical 'or' on list of vectors
Sundar Dorai-Raj
sundar.dorai-raj at pdf.com
Fri Jun 8 15:33:29 CEST 2007
Tim Bergsma said the following on 6/8/2007 5:57 AM:
> Suppose I have a list of logicals, such as returned by lapply:
>
> Theoph$Dose[1] <- NA
> Theoph$Time[2] <- NA
> Theoph$conc[3] <- NA
> lapply(Theoph,is.na)
>
> Is there a direct way to execute logical "or" across all vectors? The
> following gives the desired result, but seems unnecessarily complex.
>
> as.logical(apply(do.call("rbind",lapply(Theoph,is.na)),2,"sum"))
>
> Regards,
>
> Tim
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> 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.
How about:
apply(sapply(Theoph, is.na), 1, any)
HTH,
--sundar
More information about the R-help
mailing list