H2O importFile skiping rows

How can I skip lines when importing files? Skipping is not an available option in h2o.importFile comand.

I used the h2o library and the command:

h2o.importFile()
+4
source share
1 answer

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).

, , .

+2

Source: https://habr.com/ru/post/1684475/


All Articles