I want to do cross join between two H2OFrames. Looking for work around Strictly in H2OFrame
col1.1 <- c('A', 'B', 'E', 'C', 'F', 'D')
dummy <- rep(1,6)
d1.hex <- as.h2o( cbind( col1.1, dummy ) )
col2.1 <- c('xx', 'yy', 'zz', 'ww')
dummy <- rep(1,4)
d2.hex <- as.h2o( cbind( col2.1, dummy ) )
If I use all =TRUE
it throws Error : unimplemented
h2o.merge(d1.hex, d2.hex, all = TRUE)
If I use default, joining result is not cross join
h2o.merge(d1.hex, d2.hex )
dummy col1.1 col2.1
1 A xx
1 B xx
1 E xx
1 C xx
1 F xx
1 D xx
I have tried changing data types of joining column to categorical or numeric but no success. Looking for your help in resolving the issue.
Thank you