Reader objects can be manipulated with the following methods:
next_chunk: allows to read the next chunk of a reader object
get_matrix: retrieve the current data chunk contained in the object, as matrix
get_dataframe: retrieves the current data chunk, as a data frame
In addition, this information can be retrieved from reader objects:
get_completed: get the number of rows already read
get_colnames: get column names of the reader object
next_chunk(obj)# S4 method for reader
next_chunk(obj)
get_matrix(obj)
# S4 method for reader
get_matrix(obj)
get_dataframe(obj)
# S4 method for reader
get_dataframe(obj)
get_completed(obj)
# S4 method for reader
get_completed(obj)
get_colnames(obj)
# S4 method for reader
get_colnames(obj)
object of class reader
See reader
for examples.