The R Project SVN R

Rev

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

Rev 25433 Rev 27447
Line 60... Line 60...
60
  \emph{Programming with Data. A Guide to the S Language}.
60
  \emph{Programming with Data. A Guide to the S Language}.
61
  Springer.
61
  Springer.
62
}
62
}
63
\seealso{
63
\seealso{
64
  \code{\link{NaN}}, \code{\link{is.nan}}, etc.,
64
  \code{\link{NaN}}, \code{\link{is.nan}}, etc.,
65
  and the utility function \code{\link{complete.cases}}.
65
  and the utility function \code{\link[stats]{complete.cases}}.
66
 
66
 
67
  \code{\link{na.action}}, \code{\link{na.omit}}, \code{\link{na.fail}}
67
  \code{\link[stats]{na.action}}, \code{\link[stats]{na.omit}},
-
 
68
  \code{\link[stats]{na.fail}}
68
  on how methods can be tuned to deal with missing values.
69
  on how methods can be tuned to deal with missing values.
69
}
70
}
70
\examples{
71
\examples{
71
is.na(c(1, NA))        #> FALSE  TRUE
72
is.na(c(1, NA))        #> FALSE  TRUE
72
is.na(paste(c(1, NA))) #> FALSE FALSE
73
is.na(paste(c(1, NA))) #> FALSE FALSE