Rdocumentation
powered by
Learn R Programming
iterators (version 1.0.2)
iread.table: Iterator over Rows of a Data Frame Stored in a File
Description
Returns an iterator over the rows of a data frame stored in a file in table format. It is a wrapper around the standard
read.table
function.
Usage
iread.table(file, ..., verbose=FALSE)
Arguments
file
the name of the file to read the data from.
...
all additional arguments are passed on to the
read.table
function. See the documentation for
read.table
for more information.
verbose
logical value indicating whether or not to print the calls to
read.table
.
Value
The file reading iterator.
See Also
read.table