select_col {manymodelr}R Documentation

A convenient selector gadget

Description

A convenient selector gadget

Usage

select_col(df, ...)

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

Value

Returns a dataframe with selected columns

Examples

select_col(yields,height,weight,normal)
# A pipe friendly example
## Not run: 
library(dplyr)
as_tibble(yields) %>%
select_col(height, weight, normal)

## End(Not run)

[Package manymodelr version 0.3.7 Index]