Unlimited learning, half price | 50% off

Last chance! 50% off unlimited learning

Sale ends in


h2o (version 3.6.0.8)

h2o.table: Cross Tabulation and Table Creation in H2O

Description

Uses the cross-classifying factors to build a table of counts at each combination of factor levels.

Usage

h2o.table(x, y = NULL)

table.Frame(x, y = NULL)

Arguments

x
An H2O Frame object with at most two columns.
y
An H2O Frame similar to x, or NULL.

Value

  • Returns a tabulated Frame object.

Examples

Run this code
library(h2o)
h2o.init()
prosPath <- system.file("extdata", "prostate.csv", package="h2o")
prostate.hex <- h2o.uploadFile(path = prosPath, destination_frame = "prostate.hex")
summary(prostate.hex)

# Counts of the ages of all patients
head(h2o.table(prostate.hex[,3]))
h2o.table(prostate.hex[,3])

# Two-way table of ages (rows) and race (cols) of all patients
head(h2o.table(prostate.hex[,c(3,4)]))
h2o.table(prostate.hex[,c(3,4)])

Run the code above in your browser using DataLab