scan {base} | R Documentation |
The value of what
can be a list of types, in which case
scan
returns a list of vectors with the types given by the
types of the elements in what
. This provides a way of reading
columnar data.
Keyboard entry is terminated by typing a blank line.
scan(file="", what=numeric(), nmax=0, sep="",
skip=0, nlines=0)
file |
the name of a file to read data values from.
If the specified file is |
what |
the type of |
nmax |
the maximum number of data values to be read, or if
|
sep |
by default, scan expects to read white-space delimited
input fields. Alternatively, |
skip |
this many lines of the input file should be skipped before starting to read data values. |
nlines |
the maximum number of lines of data to be read. |
read.table
for more user-friendly reading of data matrices.
write
.
system("echo 'TITEL extra line' > ex.data")
system("echo 2 3 5 7 >> ex.data")
system("echo 11 13 17 >> ex.data")
scan("ex.data", skip = 1)