Learn R Programming

manymodelr (version 0.3.9)

select_col: A convenient selector gadget

Description

A convenient selector gadget

Usage

select_col(df, ...)

Value

Returns a dataframe with selected columns

Arguments

df

The data set from which to select a column

...

columns to select, no quotes

Details

A friendly way to select a column or several columns. Mainly for non-pipe usage It is recommended to use known select functions to do pipe manipulations. Otherwise convert to tibble

Examples

Run this code
select_col(yields,height,weight,normal)
# A pipe friendly example
if (FALSE) {
library(dplyr)
as_tibble(yields) %>%
select_col(height, weight, normal)
}

Run the code above in your browser using DataLab