File: iread.table.Rd

package info (click to toggle)
r-cran-iterators 1.0.7-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 532 kB
  • sloc: sh: 29; makefile: 1
file content (35 lines) | stat: -rw-r--r-- 1,229 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
\name{iread.table}
\alias{iread.table}
\title{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 \code{read.table} function.
}
\usage{
iread.table(file, ..., verbose=FALSE)
}
\arguments{
  \item{file}{the name of the file to read the data from.}
  \item{\dots}{all additional arguments are passed on to the
           \code{read.table} function.  See the documentation for
           \code{read.table} for more information.}
  \item{verbose}{logical value indicating whether or not to print the
           calls to \code{read.table}.}
}
\value{
  The file reading iterator.
}
\note{
In this version of \code{iread.table}, both the \code{read.table}
arguments \code{header} and \code{row.names} must be specified.  This is
because the default values of these arguments depend on the contents of
the beginning of the file.  In order to make the subsequent calls to
\code{read.table} work consistently, the user must specify those
arguments explicitly.  A future version of \code{iread.table} may remove
this requirement.
}
\seealso{
  \code{\link[utils]{read.table}}
}
\keyword{utilities}