h2o.nacnt: Count of NAs per column

View source: R/frame.R

h2o.nacntR Documentation

Count of NAs per column

Description

Gives the count of NAs per column.

Usage

h2o.nacnt(x)

Arguments

x

An H2OFrame object.

Value

Returns a list containing the count of NAs per column

Examples

## Not run: 
library(h2o)
h2o.init()

iris_hf <- as.h2o(iris)
h2o.nacnt(iris_hf)  # should return all 0s
h2o.insertMissingValues(iris_hf)
h2o.nacnt(iris_hf)

## End(Not run)

h2o documentation built on Aug. 9, 2023, 9:06 a.m.