Learn R Programming

h2o (version 2.8.4.4)

str: Display the Structure of a H2O Dataset

Description

A method for the str generic. Obtain information about H2O parsed data objects and their structure.

Usage

## S3 method for class 'H2OParsedData':
str(object, ...)

Arguments

object
An H2OParsedData object.
...
Potential further arguments. (Currently unimplemented).

Value

  • A table listing summary information including variable names, types (for example, enum or numeric), count of observations and columns.

Examples

Run this code
library(h2o)
localH2O = h2o.init()
prosPath = system.file("extdata", "prostate.csv", package="h2o")
prostate.hex = h2o.importFile(localH2O, path = prosPath)
str(prostate.hex)

Run the code above in your browser using DataLab