Is there a simply way to create a disk.frame containing only specified columns?
I suppose it could be done using the csv_to_disk.frame's inmapfn parameter in the following way:
inmapfn = function(chunk) {
cols_to_keep = c('col01', 'col02', ...)
chunk[, (names(chunk) %in% cols_to_keep)]
...
}
or something like that,
Maybe a specific parameter like colsToKeep into the cst_to_disk.frame function could be really useful.