Rev 83360 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/utils/man/read.table.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2022 R Core Team% Distributed under GPL 2 or later\name{read.table}\alias{read.table}\alias{read.csv}\alias{read.csv2}\alias{read.delim}\alias{read.delim2}\title{Data Input}\description{Reads a file in table format and creates a data frame from it, withcases corresponding to lines and variables to fields in the file.}\usage{read.table(file, header = FALSE, sep = "", quote = "\"'",dec = ".", numerals = c("allow.loss", "warn.loss", "no.loss"),row.names, col.names, as.is = !stringsAsFactors, tryLogical = TRUE,na.strings = "NA", colClasses = NA, nrows = -1,skip = 0, check.names = TRUE, fill = !blank.lines.skip,strip.white = FALSE, blank.lines.skip = TRUE,comment.char = "#",allowEscapes = FALSE, flush = FALSE,stringsAsFactors = FALSE,fileEncoding = "", encoding = "unknown", text, skipNul = FALSE)read.csv(file, header = TRUE, sep = ",", quote = "\"",dec = ".", fill = TRUE, comment.char = "", \dots)read.csv2(file, header = TRUE, sep = ";", quote = "\"",dec = ",", fill = TRUE, comment.char = "", \dots)read.delim(file, header = TRUE, sep = "\t", quote = "\"",dec = ".", fill = TRUE, comment.char = "", \dots)read.delim2(file, header = TRUE, sep = "\t", quote = "\"",dec = ",", fill = TRUE, comment.char = "", \dots)}\arguments{\item{file}{the name of the file which the data are to be read from.Each row of the table appears as one line of the file. If it doesnot contain an \emph{absolute} path, the file name is\emph{relative} to the current working directory,\code{\link{getwd}()}. Tilde-expansion is performed where supported.This can be a compressed file (see \code{\link{file}}).Alternatively, \code{file} can be a readable text-mode\link{connection} (which will be opened for reading ifnecessary, and if so \code{\link{close}}d (and hence destroyed) atthe end of the function call). (If \code{\link{stdin}()} is used,the prompts for lines may be somewhat confusing. Terminate inputwith a blank line or an EOF signal, \code{Ctrl-D} on Unix and\code{Ctrl-Z} on Windows. Any pushback on \code{stdin()} will becleared before return.)\code{file} can also be a complete URL. (For the supported URLschemes, see the \sQuote{URLs} section of the help for\code{\link{url}}.)}\item{header}{a logical value indicating whether the file contains thenames of the variables as its first line. If missing, the value isdetermined from the file format: \code{header} is set to \code{TRUE}if and only if the first row contains one fewer field than thenumber of columns.}\item{sep}{the field separator character. Values on each line of thefile are separated by this character. If \code{sep = ""} (thedefault for \code{read.table}) the separator is \sQuote{white space},that is one or more spaces, tabs, newlines or carriage returns.}\item{quote}{the set of quoting characters. To disable quotingaltogether, use \code{quote = ""}. See \code{\link{scan}} for thebehaviour on quotes embedded in quotes. Quoting is only consideredfor columns read as character, which is all of them unless\code{colClasses} is specified.}\item{dec}{the character used in the file for decimal points.}\item{numerals}{string indicating how to convert numbers whose conversionto double precision would lose accuracy, see \code{\link{type.convert}}.Can be abbreviated. (Applies also to complex-number inputs.)}\item{row.names}{a vector of row names. This can be a vector givingthe actual row names, or a single number giving the column of thetable which contains the row names, or character string giving thename of the table column containing the row names.If there is a header and the first row contains one fewer field thanthe number of columns, the first column in the input is used for therow names. Otherwise if \code{row.names} is missing, the rows arenumbered.Using \code{row.names = NULL} forces row numbering. Missing or\code{NULL} \code{row.names} generate row names that are consideredto be \sQuote{automatic} (and not preserved by \code{\link{as.matrix}}).}\item{col.names}{a vector of optional names for the variables.The default is to use \code{"V"} followed by the column number.}\item{as.is}{controls conversion of character variables (insofar asthey are not converted to logical, numeric or complex) to factors,if not otherwise specified by \code{colClasses}.Its value is either a vector of logicals (values are recycled ifnecessary), or a vector of numeric or character indices whichspecify which columns should not be converted to factors.Note: to suppress all conversions including those of numericcolumns, set \code{colClasses = "character"}.Note that \code{as.is} is specified per column (not pervariable) and so includes the column of row names (if any) and anycolumns to be skipped.}\item{tryLogical}{a \code{\link{logical}} determining if columnsconsisting entirely of \code{"F"}, \code{"T"}, \code{"FALSE"}, and\code{"TRUE"} should be converted to \code{\link{logical}}; passed to\code{\link{type.convert}}, true by default.}\item{na.strings}{a character vector of strings which are to beinterpreted as \code{\link{NA}} values. Blank fields are alsoconsidered to be missing values in logical, integer, numeric andcomplex fields. Note that the test happens \emph{after}white space is stripped from the input, so \code{na.strings}values may need their own white space stripped in advance.}\item{colClasses}{character. A vector of classes to be assumed forthe columns. If unnamed, recycled as necessary. If named, namesare matched with unspecified values being taken to be \code{NA}.Possible values are \code{NA} (the default, when\code{\link{type.convert}} is used), \code{"NULL"} (when the columnis skipped), one of the atomic vector classes (logical, integer,numeric, complex, character, raw), or \code{"factor"}, \code{"Date"}or \code{"POSIXct"}. Otherwise there needs to be an \code{as}method (from package \pkg{methods}) for conversion from\code{"character"} to the specified formal class.Note that \code{colClasses} is specified per column (not pervariable) and so includes the column of row names (if any).}\item{nrows}{integer: the maximum number of rows to read in. Negativeand other invalid values are ignored.}\item{skip}{integer: the number of lines of the data file to skip beforebeginning to read data.}\item{check.names}{logical. If \code{TRUE} then the names of thevariables in the data frame are checked to ensure that they aresyntactically valid variable names. If necessary they are adjusted(by \code{\link{make.names}}) so that they are, and also to ensurethat there are no duplicates.}\item{fill}{logical. If \code{TRUE} then in case the rows have unequallength, blank fields are implicitly added. See \sQuote{Details}.}\item{strip.white}{logical. Used only when \code{sep} hasbeen specified, and allows the stripping of leading and trailingwhite space from unquoted \code{character} fields (\code{numeric} fieldsare always stripped). See \code{\link{scan}} for further details(including the exact meaning of \sQuote{white space}),remembering that the columns may include the row names.}\item{blank.lines.skip}{logical: if \code{TRUE} blank lines in theinput are ignored.}\item{comment.char}{character: a character vector of length onecontaining a single character or an empty string. Use \code{""} toturn off the interpretation of comments altogether.}\item{allowEscapes}{logical. Should C-style escapes such as\samp{\\n} be processed or read verbatim (the default)? Note that ifnot within quotes these could be interpreted as a delimiter (but notas a comment character). For more details see \code{\link{scan}}.}\item{flush}{logical: if \code{TRUE}, \code{scan} will flush to theend of the line after reading the last of the fields requested.This allows putting comments after the last field.}\item{stringsAsFactors}{logical: should character vectors be convertedto factors? Note that this is overridden by \code{as.is} and\code{colClasses}, both of which allow finer control.}\item{fileEncoding}{character string: if non-empty declares theencoding used on a file (not a connection) so the character data canbe re-encoded. See the \sQuote{Encoding} section of the help for\code{\link{file}}, the \sQuote{R Data Import/Export} manual and\sQuote{Note}.}\item{encoding}{encoding to be assumed for input strings. It isused to mark character strings as known to be inLatin-1 or UTF-8 (see \code{\link{Encoding}}): it is not used tore-encode the input, but allows \R to handle encoded strings intheir native encoding (if one of those two). See \sQuote{Value}and \sQuote{Note}.}\item{text}{character string: if \code{file} is not supplied and this is,then data are read from the value of \code{text} via a text connection.Notice that a literal string can be used to include (small) data setswithin R code.}\item{skipNul}{logical: should nuls be skipped?}\item{\dots}{Further arguments to be passed to \code{read.table}.}}\details{This function is the principal means of reading tabular data into \R.Unless \code{colClasses} is specified, all columns are read ascharacter columns and then converted using \code{\link{type.convert}}to logical, integer, numeric, complex or (depending on \code{as.is})factor as appropriate. Quotes are (by default) interpreted in allfields, so a column of values like \code{"42"} will result in aninteger column.A field or line is \sQuote{blank} if it contains nothing (exceptwhitespace if no separator is specified) before a comment character orthe end of the field or line.If \code{row.names} is not specified and the header line has one lessentry than the number of columns, the first column is taken to be therow names. This allows data frames to be read in from the format inwhich they are printed. If \code{row.names} is specified and doesnot refer to the first column, that column is discarded from such files.The number of data columns is determined by looking at the first fivelines of input (or the whole input if it has less than five lines), orfrom the length of \code{col.names} if it is specified and is longer.This could conceivably be wrong if \code{fill} or\code{blank.lines.skip} are true, so specify \code{col.names} ifnecessary (as in the \sQuote{Examples}).\code{read.csv} and \code{read.csv2} are identical to\code{read.table} except for the defaults. They are intended forreading \sQuote{comma separated value} files (\file{.csv}) or(\code{read.csv2}) the variant used in countries that use a comma asdecimal point and a semicolon as field separator. Similarly,\code{read.delim} and \code{read.delim2} are for reading delimitedfiles, defaulting to the TAB character for the delimiter. Notice that\code{header = TRUE} and \code{fill = TRUE} in these variants, andthat the comment character is disabled.The rest of the line after a comment character is skipped; quotesare not processed in comments. Complete comment lines are allowedprovided \code{blank.lines.skip = TRUE}; however, comment lines priorto the header must have the comment character in the first non-blankcolumn.Quoted fields with embedded newlines are supported except after acomment character. Embedded nuls are unsupported: skipping them (with\code{skipNul = TRUE}) may work.}\section{CSV files}{See the help on \code{\link{write.csv}} for the various conventionsfor \code{.csv} files. The commonest form of CSV file with row namesneeds to be read with \code{read.csv(..., row.names = 1)} to use thenames in the first column of the file as row names.}\value{A data frame (\code{\link{data.frame}}) containing a representation ofthe data in the file.Empty input is an error unless \code{col.names} is specified, when a0-row data frame is returned: similarly giving just a header line if\code{header = TRUE} results in a 0-row data frame. Note that ineither case the columns will be logical unless \code{colClasses} wassupplied.Character strings in the result (including factor levels) will have adeclared encoding if \code{encoding} is \code{"latin1"} or\code{"UTF-8"}.}\section{Memory usage}{These functions can use a surprising amount of memory when readinglarge files. There is extensive discussion in the \sQuote{R DataImport/Export} manual, supplementing the notes here.Less memory will be used if \code{colClasses} is specified as one ofthe six \link{atomic} vector classes. This can be particularly so whenreading a column that takes many distinct numeric values, as storingeach distinct value as a character string can take up to 14 times asmuch memory as storing it as an integer.Using \code{nrows}, even as a mild over-estimate, will help memoryusage.Using \code{comment.char = ""} will be appreciably faster than the\code{read.table} default.\code{read.table} is not the right tool for reading large matrices,especially those with many columns: it is designed to read\emph{data frames} which may have columns of very different classes.Use \code{\link{scan}} instead for matrices.}\note{The columns referred to in \code{as.is} and \code{colClasses} includethe column of row names (if any).There are two approaches for reading input that is not in the localencoding. If the input is known to be UTF-8 or Latin1, use the\code{encoding} argument to declare that. If the input is in someother encoding, then it may be translated on input. The \code{fileEncoding}argument achieves this by setting up a connection to do the re-encodinginto the current locale. Note that on Windows or other systems not runningin a UTF-8 locale, this may not be possible.}\seealso{The \sQuote{R Data Import/Export} manual.\code{\link{scan}}, \code{\link{type.convert}},\code{\link{read.fwf}} for reading \emph{f}ixed \emph{w}idth\emph{f}ormatted input;\code{\link{write.table}};\code{\link{data.frame}}.\code{\link{count.fields}} can be useful to determine problems withreading files which result in reports of incorrect record lengths (seethe \sQuote{Examples} below).\url{https://www.rfc-editor.org/rfc/rfc4180} for the IANA definition ofCSV files (which requires comma as separator and CRLF line endings).}\references{Chambers, J. M. (1992)\emph{Data for models.}Chapter 3 of \emph{Statistical Models in S}eds J. M. Chambers and T. J. Hastie, Wadsworth & Brooks/Cole.}\examples{## using count.fields to handle unknown maximum number of fields## when fill = TRUEtest1 <- c(1:5, "6,7", "8,9,10")tf <- tempfile()writeLines(test1, tf)read.csv(tf, fill = TRUE) # 1 columnncol <- max(count.fields(tf, sep = ","))read.csv(tf, fill = TRUE, header = FALSE,col.names = paste0("V", seq_len(ncol)))unlink(tf)## "Inline" data set, using text=## Notice that leading and trailing empty lines are auto-trimmedread.table(header = TRUE, text = "a b1 23 4")}\keyword{file}\keyword{connection}