h2o (version 3.20.0.8)

h2o.head: Return the Head or Tail of an H2O Dataset.

Description

Returns the first or last rows of an H2OFrame object.

Usage

h2o.head(x, n = 6L, ...)

# S3 method for H2OFrame head(x, n = 6L, ...)

h2o.tail(x, n = 6L, ...)

# S3 method for H2OFrame tail(x, n = 6L, ...)

Arguments

x

An H2OFrame object.

n

(Optional) A single integer. If positive, number of rows in x to return. If negative, all but the n first/last number of rows in x.

...

Ignored.

Value

An H2OFrame containing the first or last n rows of an H2OFrame object.

Examples

Run this code
# NOT RUN {
library(h2o)
h2o.init(ip <- "localhost", port = 54321, startH2O = TRUE)
ausPath <- system.file("extdata", "australia.csv", package="h2o")
australia.hex <- h2o.uploadFile(path = ausPath)
head(australia.hex, 10)
tail(australia.hex, 10)
# }

Run the code above in your browser using DataLab