getcols: Get data columns

View source: R/getcols.R

getcolsR Documentation

Get data columns

Description

Get columns from a data table by specifying the index, column name as a string, or unquoted column name. Returns the column names or indices.

Usage

getcols(data, ..., as_index = FALSE)

Arguments

data

the existing tbl

...

Columns to get

as_index

return the column indices (defaults to name)

Value

vector of column names or indices

Examples

getcols(mtcars, 1, cyl, "disp", 5:7)

faux documentation built on April 20, 2023, 9:13 a.m.