library(h2o)
localH2O = h2o.init(beta = TRUE)
myframe = h2o.createFrame(localH2O, 'myframekey', rows = 1000, cols = 10,
seed = -12301283, randomize = TRUE, value = 0, real_range = 2.0,
categorical_fraction = 0.2, factors = 100,
integer_fraction = 0.2, integer_range = 100, missing_fraction = 0.1,
response_factors = 2)
head(myframe)
summary(myframe)
h2o.shutdown(localH2O)
Run the code above in your browser using DataLab