R/frame.R
Returns the first or last rows of an H2OFrame object.
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, ...)
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. |
An H2OFrame containing the first or last n rows of an H2OFrame object.
# 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) # }