Learn R Programming

h2o (version 3.44.0.3)

plot.H2OInfogram: Plot an H2O Infogram

Description

Plots the Infogram for an H2OInfogram object.

Usage

# S3 method for H2OInfogram
plot(x, ...)

Value

A ggplot2 object.

Arguments

x

A fitted H2OInfogram object.

...

additional arguments to pass on.

See Also

h2o.infogram

Examples

Run this code
if (FALSE) {
h2o.init()

# Convert iris dataset to an H2OFrame
train <- as.h2o(iris)

# Create and plot infogram
ig <- h2o.infogram(y = "Species", training_frame = train)
plot(ig)

}

Run the code above in your browser using DataLab