R/frame.R
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
h2o.describe(frame)
frame | An H2OFrame object. |
---|
A table with the Frame stats.
# NOT RUN { library(h2o) h2o.init() prosPath <- system.file("extdata", "prostate.csv", package="h2o") prostate.hex <- h2o.importFile(path = prosPath) h2o.describe(prostate.hex) # }