resolution: Compute the "resolution" of a data vector.

Description Usage Arguments Details Examples

View source: R/utils_resolution.R

Description

The resolution is is the smallest non-zero distance between adjacent values. If there is only one unique value, then the resolution is defined to be one.

Usage

1
resolution(x, zero = TRUE)

Arguments

x

numeric vector

zero

should a zero value be automatically included in the computation of resolution

Details

If x is an integer vector, then it is assumed to represent a discrete variable, and the resolution is 1.

Examples

1
2
3
4
5
resolution(1:10)
resolution((1:10) - 0.5)
resolution((1:10) - 0.5, FALSE)
resolution(c(1,2, 10, 20, 50))
resolution(as.integer(c(1, 10, 20, 50)))  # Returns 1

rpruim/ggvis2 documentation built on May 28, 2019, 2:34 a.m.