Read chunkwise from a data source
read_chunkwise(src, chunk_size = 10000L, ...)# S3 method for character
read_chunkwise(
src,
chunk_size = 10000L,
format = c("csv", "csv2", "table"),
stringsAsFactors = FALSE,
...
)
# S3 method for laf
read_chunkwise(src, chunk_size = 10000L, ...)
# S3 method for tbl_sql
read_chunkwise(src, chunk_size = 10000L, ...)
an object of type tbl_chunk
source to read from
size of the chunks
parameters used by specific classes
used for specifying type of text file
logical
should string be read as factors?