h2o.describe: H2O Description of A Dataset

View source: R/frame.R

h2o.describeR Documentation

H2O Description of A Dataset

Description

Reports the "Flow" style summary rollups on an instance of H2OFrame. Includes information about column types, mins/maxs/missing/zero counts/stds/number of levels

Usage

h2o.describe(frame)

Arguments

frame

An H2OFrame object.

Value

A table with the Frame stats.

Examples

## Not run: 
library(h2o)
h2o.init()
prostate_path <- system.file("extdata", "prostate.csv", package = "h2o")
prostate <- h2o.importFile(path = prostate_path)
h2o.describe(prostate)

## End(Not run)

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