range_seq: Sequence Generation Spanning A Numerical Range

Description Usage Arguments Author(s) See Also Examples

View source: R/range_seq.R

Description

Generates a sequence of numbers spanning the range of x.

Usage

1
range_seq(x, extend = 0, ...)

Arguments

x

a numeric vector.

extend

number specifying the fraction by which the range should be extended.

...

further arguments to be passed to seq.

Author(s)

Matthew A. Birk, matthewabirk@gmail.com

See Also

seq, extendrange

Examples

1
2
3
range_seq(rnorm(10, sd = 20))
range_seq(c(3, 9), extend = 0.1)
range_seq(c(3, 9), length.out = 20)

birk documentation built on May 2, 2019, 8:58 a.m.

Related to range_seq in birk...