Returns the parallel maxima and minima of the input values.
Usage
pmax(..., na.rm = FALSE)
# Default S3 method
pmax(..., na.rm = FALSE)
# S3 method for class 'ddf_col'
pmax(..., na.rm = FALSE)
# S3 method for class 'tbl_ddf'
pmax(..., na.rm = FALSE)
pmin(..., na.rm = FALSE)
# Default S3 method
pmin(..., na.rm = FALSE)
# S3 method for class 'ddf_col'
pmin(..., na.rm = FALSE)
# S3 method for class 'tbl_ddf'
pmin(..., na.rm = FALSE)
Value
A dibble if ...
are dibbles. See base::pmax()
and base::pmin()
for the return value of the default method.
Details
These functions override base functions to make them generic. The default methods call the base versions.