Learn R Programming

gratia (version 0.8.1)

evenly: Create a sequence of evenly-spaced values

Description

For a continuous vector x, evenly and seq_min_max() create a sequence of n evenly-spaced values over the range min(x) -- max(x). For a factor x, the function returns levels(x).

Usage

evenly(x, n = 100, by = NULL)

seq_min_max(x, n, by = NULL)

Value

A numeric vector of length n.

Arguments

x

numeric; vector over which evenly-spaced values are returned

n

numeric; the number of evenly-spaced values to return. A default of 100 is used for convenience as that what is typically used when evaluating a smooth.

by

numeric; the increment of the sequence. If specified, argument n is ignored and the sequence returned will be from min(x) to max(x) in increments of by.

Examples

Run this code
set.seed(1)
x <- rnorm(10)
n <- 10L
evenly(x, n = n)

Run the code above in your browser using DataLab