Rng: Identifies Max, Min, and Spread of Numeric Columns

Description Usage Arguments Value See Also Examples

View source: R/Rng.R

Description

Determines maximum value and minimum value for each numeric column as well as calculates the total range (spread) of the values. If multiple

If verbose = TRUE, displays results to console

If Verbose = FALSE, returns dataframe of results

Usage

1
Rng(x, verbose = TRUE)

Arguments

x

A matrix-like R object

verbose

Logical operator

Value

A dataframe of results

See Also

summary

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
x <- data.frame("X1" = c(1,2,3,1,2,3),
                "X2" = 1:6,
                "X3"= c("a","b","c","a","b","c"))

Rng(x)

value <- Rng(x, verbose = FALSE)

## End(Not run)

ckornafel/expldata documentation built on Dec. 27, 2019, 2:20 a.m.