Learn R Programming

h2o (version 3.2.0.3)

H2OFrame-Extract: Extract or Replace Parts of an H2OFrame Object

Description

Operators to extract or replace parts of H2OFrame objects.

Usage

## S3 method for class 'H2OFrame':
[(x, i, j, ..., drop = TRUE)

## S3 method for class 'H2OFrame': $(x, name)

## S3 method for class 'H2OFrame': [[(x, i, exact = TRUE)

## S3 method for class 'H2OFrame': [(x, i, j, ...) <- value

## S3 method for class 'H2OFrame': $(x, name) <- value

## S3 method for class 'H2OFrame': [[(x, i) <- value

Arguments

x
object from which to extract element(s) or in which to replace element(s).
i,j,...
indices specifying elements to extract or replace. Indices are numeric or character vectors or empty (missing) or will be matched to the names.
drop
a logical, whether or not to attempt to reduce dimensions to the lowest possible.
name
a literal character string or a name (possibly backtick quoted).
exact
controls possible partial matching of [[ when extracting a character
value
an array-like H2O object similar to x.