match and %in% return values similar to the base R generic
functions.
Usage
h2o.match(x, table, nomatch = 0, incomparables = NULL)
match.H2OFrame(x, table, nomatch = 0, incomparables = NULL)
x %in% tableArguments
- x
a categorical vector from an H2OFrame object with values to be matched.
- table
an R object to match
xagainst.- nomatch
the value to be returned in the case when no match is found.
- incomparables
a vector of calues that cannot be matched. Any value in
xmatching a value in this vector is assigned thenomatchvalue.
See also
match for base R implementation.