[R] logical 'or' on list of vectors
Chuck Cleland
ccleland at optonline.net
Fri Jun 8 15:28:36 CEST 2007
Tim Bergsma wrote:
> 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"))
Is this what you want?
apply(is.na(Theoph), 1, any)
> 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.
--
Chuck Cleland, Ph.D.
NDRI, Inc.
71 West 23rd Street, 8th floor
New York, NY 10010
tel: (212) 845-4495 (Tu, Th)
tel: (732) 512-0171 (M, W, F)
fax: (917) 438-0894
More information about the R-help
mailing list