h2o (version 3.2.0.3)

h2o.ls: List Keys on an H2O Cluster

Description

Accesses a list of object keys in the running instance of H2O.

Usage

h2o.ls(conn = h2o.getConnection())

Arguments

conn
An H2OConnection object containing the IP address and port number of the H2O server.

Value

  • Returns a list of hex keys in the current H2O instance.

Examples

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

Run the code above in your browser using DataLab