library(h2o)
localH2O <- h2o.init(ip = "localhost", port = 54321, startH2O = TRUE)
df <- data.frame(
V1 = c("hello world", "the dog ate", "my friend Bob Ace", "meow meow"),
V2 = c(92318, 34891.123, 21,99))
hex <- as.h2o(localH2O, df)
strsplit(hex$V1) # split on ' '
Run the code above in your browser using DataLab