h2o.strsplit | R Documentation |
String Split
h2o.strsplit(x, split)
x |
The column whose strings must be split. |
split |
The pattern to split on. |
An H2OFrame where each column is the outcome of the string split.
## 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.