The function h2o.importFile()does not provide a way to skip rows when importing. You have several options:
- Import using
h2o.importFile(), and then a subset of the frame into the desired rows. Below are a few examples on how to cut lines in an H2OFrame. - , ,
as.h2o() data.frame H2OFrame. , as.h2o() , , data.table options("h2o.use.data.table" = TRUE).
, , .