I have a h2o object.
The standard R for subset
sub1<-trans[trans$Type==1,]
I tried the same in h2o. It is not working
sub1<-trans[trans$Type==1,]
I also tried
sub1<-h2o.exec(trans[trans$Type==1,])
note* trans is a h2o data Object.
Any idea to do it in h2o? Thanks
I'm not sure if this is the most "hydrophilic" way to do this but:
Seems to work for me with no problem.
For a more reproducible example, consider