h2o.strsplit: String Split

View source: R/frame.R

h2o.strsplitR Documentation

String Split

Description

String Split

Usage

h2o.strsplit(x, split)

Arguments

x

The column whose strings must be split.

split

The pattern to split on.

Value

An H2OFrame where each column is the outcome of the string split.

Examples

## Not run: 
library(h2o)
h2o.init()
string_to_split <- as.h2o("Split at every character.")
split_string <- h2o.strsplit(string_to_split, "")

## End(Not run)

h2o documentation built on Aug. 9, 2023, 9:06 a.m.