Learn R Programming

PKNCA (version 0.11.0)

business.mean: Generate functions to do the named function (e.g. mean) applying the business rules.

Description

Generate functions to do the named function (e.g. mean) applying the business rules.

Usage

business.mean(x, ...)

business.sd(x, ...)

business.cv(x, ...)

business.geomean(x, ...)

business.geocv(x, ...)

business.min(x, ...)

business.max(x, ...)

business.median(x, ...)

business.range(x, ...)

Value

The value of the various functions or NA if too many values are missing

Arguments

x

vector to be passed to the various functions

...

Additional arguments to be passed to the underlying function.

Functions

  • business.sd(): Compute the standard deviation with business rules.

  • business.cv(): Compute the coefficient of variation with business rules.

  • business.geomean(): Compute the geometric mean with business rules.

  • business.geocv(): Compute the geometric coefficient of variation with business rules.

  • business.min(): Compute the minimum with business rules.

  • business.max(): Compute the maximum with business rules.

  • business.median(): Compute the median with business rules.

  • business.range(): Compute the range with business rules.

See Also

pk.business()