original_training_data: An H2OFrame object that was used for model training. Currently there is no validation of the input.
...: additional arguments to pass on.
Returns
Returns an H2OFrame contain row to tree assignment for each tree and row.
Details
Where 1 in the tree_{number} cols means row is used in the tree and 0 means that row is not used. The structure of the output depends on sample_rate or sample_size parameter setup.
Note: Multinomial classification generate tree for each category, each tree use the same sample of the data.
Examples
## Not run:library(h2o)h2o.init()prostate_path <- system.file("extdata","prostate.csv", package ="h2o")prostate <- h2o.uploadFile(path = prostate_path)prostate_gbm <- h2o.gbm(4:9,"AGE", prostate, sample_rate =0.6)# Get row to tree assignmenth2o.row_to_tree_assignment(prostate_gbm, prostate)## End(Not run)