Give the TRUE indices of a logical object, allowing for array indices.

h2o.which(x)

Arguments

x

An H2OFrame object.

Value

Returns an H2OFrame object.

See also

which for the base R method.

Examples

# NOT RUN {
h2o.init()
iris.hex <- as.h2o(iris)
h2o.which(iris.hex[,1]==4.4)
# }