The R Project SVN R

Rev

Rev 69526 | Rev 78260 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 69526 Rev 70170
Line 1... Line 1...
1
% File src/library/utils/man/read.table.Rd
1
% File src/library/utils/man/read.table.Rd
2
% Part of the R package, https://www.R-project.org
2
% Part of the R package, https://www.R-project.org
3
% Copyright 1995-2015 R Core Team
3
% Copyright 1995-2016 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{read.table}
6
\name{read.table}
7
\alias{read.table}
7
\alias{read.table}
8
\alias{read.csv}
8
\alias{read.csv}
Line 118... Line 118...
118
  }
118
  }
119
 
119
 
120
  \item{na.strings}{a character vector of strings which are to be
120
  \item{na.strings}{a character vector of strings which are to be
121
    interpreted as \code{\link{NA}} values.  Blank fields are also
121
    interpreted as \code{\link{NA}} values.  Blank fields are also
122
    considered to be missing values in logical, integer, numeric and
122
    considered to be missing values in logical, integer, numeric and
123
    complex fields.}
123
    complex fields.  Note that the test happens \emph{after} 
-
 
124
    white space is stripped from the input, so \code{na.strings} 
-
 
125
    values may need their own white space stripped in advance.}
124
 
126
 
125
  \item{colClasses}{character.  A vector of classes to be assumed for
127
  \item{colClasses}{character.  A vector of classes to be assumed for
126
    the columns.  If unnamed, recycled as necessary.  If named, names
128
    the columns.  If unnamed, recycled as necessary.  If named, names
127
    are matched with unspecified values being taken to be \code{NA}.
129
    are matched with unspecified values being taken to be \code{NA}.
128
 
130