und: Undocumented functions

View source: R/und.R

undR Documentation

Undocumented functions

Description

A collection of miscellaneous functions lacking documentations

Usage

und(fn, ...)

Arguments

fn

name of the function

...

arguments for the function

Value

the output will vary by function

Examples

# correlation
und(corr_text, x = 1:5, y = c(1, 2, 2, 2, 3))
# mean center
und(mean_center, 1:10)
# compare results with base function
scale(1:10, scale = TRUE)
# find the modes
und(mode, c(3, 3, 3, 1, 2, 2))
# return values that are not outliers
und(outlier_rm, c(12:18, 100))
kim::outlier(c(1:10, 100))

kim documentation built on Oct. 9, 2023, 5:08 p.m.

Related to und in kim...