Skip to content

logical vector as a matrix

6 messages · Grześ, Linlin Yan, Jorge Ivan Velez

#
I have a vector like this:
h <- c(4, 6, NA, 12) 
and I create the secound logical vector like this:
g <- c(TRUE, TRUE, FALSE, TRUE) 

And my problem is that I would like to get  a new "m" vector as a rasult "h"
and "m" but with missed "NA" value, for example:

m = (4,6,12)
Do you have any idea?
#
On Sat, May 30, 2009 at 2:48 AM, Grze? <gregorio99 at gmail.com> wrote:
Why don't you create vector g like this:
g <- ! is.na(h)
As what you tried to do:
m <- h[g] # which got (4,6,12)
you can directly use:
m <- h[ ! is.na(h) ]
#
Thanks a lot! :)
Grze? wrote:

  
    
#
Thanks a lot! :)
Linlin Yan wrote: