questionr (version 0.6.3)

rename.variable: Rename a data frame column

Description

Rename a data frame column

Usage

rename.variable(df, old, new)

Arguments

df

data frame

old

old name

new

new name

Value

A data frame with the column named "old" renamed as "new"

Examples

Run this code
# NOT RUN {
data(iris)
str(iris)
iris <- rename.variable(iris, "Species", "especes")
str(iris)
# }

Run the code above in your browser using DataCamp Workspace