extremes {dibble}R Documentation

Maxima and Minima

Description

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)

Arguments

...

Dibbles, numeric or character arguments.

na.rm

a logical indicating whether missing values should be removed.

Details

These functions override base functions to make them generic. The default methods call the base versions.

Value

A dibble if ... are dibbles. See base::pmax() and base::pmin() for the return value of the default method.

See Also

base::pmax(), base::pmin().


[Package dibble version 0.2.2 Index]