colsToFront: colsToFront

View source: R/ColumnReorder.r

colsToFrontR Documentation

colsToFront

Description

Moves column names to the front or back of the names

Usage

colsToFront(data, cols = names(data))

colsToBack(data, cols = names(data))

Arguments

data

data.frame or tbl

cols

Columns that should be moved

Details

Moves column names to the front or back of the names

Value

Character vector of column names

Author(s)

Jared P. Lander

Examples

theDF <- data.frame(A=1:10, B=11:20, C=1:10, D=11:20)
colsToFront(theDF, c('B', 'C'))
colsToFront(theDF, c('C', 'B'))
colsToFront(theDF, c('C', 'C'))
colsToBack(theDF, c('C', 'C'))
colsToBack(theDF, c('C', 'B'))
colsToBack(theDF, c('C', 'C'))


useful documentation built on Oct. 24, 2023, 9:07 a.m.