h2o (version 3.10.3.6)

h2o.nacnt: Count of NAs per column

Description

Gives the count of NAs per column.

Usage

h2o.nacnt(x)

Arguments

x
An H2OFrame object.

Examples

Run this code
h2o.init()
iris.hex <- as.h2o(iris)
h2o.nacnt(iris.hex)  # should return all 0s
h2o.insertMissingValues(iris.hex)
h2o.nacnt(iris.hex)

Run the code above in your browser using DataLab