Last data update: 2014.03.03

R: Set names in a vector
set_namesR Documentation

Set names in a vector

Description

This is a snake case wrapper for setNames, with tweaked defaults, and stricter argument checking.

Usage

set_names(x, nm = x)

Arguments

x

Vector to name

nm

Vector of names, the same length as x

Examples

set_names(1:4, c("a", "b", "c", "d"))

# If the second argument is ommitted a vector is named with itself
set_names(letters[1:5])

Results