The R Project SVN R

Rev

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

Rev 61153 Rev 61598
Line 1... Line 1...
1
% File src/library/base/man/Extremes.Rd
1
% File src/library/base/man/Extremes.Rd
2
% Part of the R package, http://www.R-project.org
2
% Part of the R package, http://www.R-project.org
3
% Copyright 1995-2011 R Core Team
3
% Copyright 1995-2013 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{Extremes}
6
\name{Extremes}
7
\alias{max}
7
\alias{max}
8
\alias{min}
8
\alias{min}
Line 87... Line 87...
87
  For \code{min} or \code{max}, a length-one vector.  For \code{pmin} or
87
  For \code{min} or \code{max}, a length-one vector.  For \code{pmin} or
88
  \code{pmax}, a vector of length the longest of the input vectors, or
88
  \code{pmax}, a vector of length the longest of the input vectors, or
89
  length zero if one of the inputs had zero length.
89
  length zero if one of the inputs had zero length.
90
 
90
 
91
  The type of the result will be that of the highest of the inputs in
91
  The type of the result will be that of the highest of the inputs in
92
  the hierarchy integer < real < character.
92
  the hierarchy integer < double < character.
93
 
93
 
94
  For \code{min} and \code{max} if there are only numeric inputs and all
94
  For \code{min} and \code{max} if there are only numeric inputs and all
95
  are empty (after possible removal of \code{NA}s), the result is double
95
  are empty (after possible removal of \code{NA}s), the result is double
96
  (\code{Inf} or \code{-Inf}).
96
  (\code{Inf} or \code{-Inf}).
97
}
97
}