strsplit: Split the Elements of a Character Vector
Description
strsplit
, a method for the strsplit
base method.Usage
strsplit(x, split, fixed, perl, useBytes)
Arguments
x
An H2OParsedData
object with a single factor column or an R data frame.
split
A non-empty string. Can be a regular expression.
fixed
Used by the base method. Ignored by H2OParsedData strsplit.
perl
Used by the base method. Ignored by H2OParsedData strsplit.
useBytes
Used by the base method. Ignored by H2OParsedData strsplit.
Details
Splits the given factor column on the input split. If split is '', then an error will be thrown. The default is to
split on whitespace.