speedy_rename {speedycode}R Documentation

Automate code for renaming variables

Description

'speedy_rename' automates the code for renaming variables. With 'speedy_rename', all the code is automatically written with dplyr syntax. The user only needs to provide the new variable names.

Usage

speedy_rename(data, path = "")

Arguments

data

name of dataset

path

If saving code to a new R script file, specify the file path here. Leave blank if not saving code.

Details

'speedy_rename' automatically writes all the code necessary to rename a large number of variables at once with the exception of the new variable names. The code may be copied and pasted from the console or saved out to a separate R script. The dplyr package is not required to run the package, but the automated code uses 'dplyr' syntax so you will need to load it to run the code.

Value

Formatted code written with 'dplyr' syntax for renaming all the variables in a dataset which may be copied and pasted from the console or saved out to a separate R script.

Author(s)

Jacob Harris jh2689@cornell.edu

Examples

speedy_rename(data = iris)

## Not run: speedy_rename(data = iris, path = "~/INPUT-FILE-PATH")


[Package speedycode version 0.3.0 Index]