breaks: Breaks values

Description Usage Arguments Value Author(s) Examples

View source: R/breaks.R

Description

Returns the breaks values of the output of the base::cut function

Usage

1
breaks(x)

Arguments

x

an output of the base::cut function.

Value

a numeric vector of break values.

Author(s)

Marc Choisy

Examples

1
2
3
x <- rnorm(10000)
y <- cut(x, breaks = -6:6)
breaks(y)

choisy/mcutils documentation built on May 29, 2019, noon