Learn R Programming

sjmisc (version 2.6.3)

var_rename: Rename variables

Description

This function renames variables in a data frame, i.e. it renames the columns of the data frame.

Usage

var_rename(x, ...)

Arguments

x

A data frame.

...

Pairs of named vectors, where the name equals the column name that should be renamed, and the value is the new column name.

Value

x, with new column names for those variables specified in ....

Examples

Run this code
# NOT RUN {
# Set variable labels for data frame
dummy <- data.frame(a = sample(1:4, 10, replace = TRUE),
                    b = sample(1:4, 10, replace = TRUE),
                    c = sample(1:4, 10, replace = TRUE))

var_rename(dummy, a = "first.col", c = "3rd.col")

# }

Run the code above in your browser using DataLab