h2o (version 3.44.0.3)

h2o.strsplit: String Split

Description

String Split

Usage

h2o.strsplit(x, split)

Value

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

Arguments

x

The column whose strings must be split.

split

The pattern to split on.

Examples

Run this code
if (FALSE) {
library(h2o)
h2o.init()
string_to_split <- as.h2o("Split at every character.")
split_string <- h2o.strsplit(string_to_split, "")
}

Run the code above in your browser using DataCamp Workspace