R/frame.R
Gives the count of NAs per column.
h2o.nacnt(x)
x | An H2OFrame object. |
---|
Returns a list containing the count of NAs per column
# NOT RUN { h2o.init() iris.hex <- as.h2o(iris) h2o.nacnt(iris.hex) # should return all 0s h2o.insertMissingValues(iris.hex) h2o.nacnt(iris.hex) # }