removeDataframeColumns: removeDataframeColumns

Description Usage Arguments Value Examples

View source: R/removeDataframeColumns.R

Description

This function is removes unneeded columns from datasets.

Usage

1

Arguments

dataframe

the dataframe to removed the columns from

...

the column names to be removed as character strings (quoted).

Value

same dataframe with columns removed

Examples

1
2
df <- data.frame(column1 = 1, column2 = 2, column3 = 3)
df <- removeDataframeColumns(df, 'column1', 'column3')

Agriculturist/EmissionsHelper documentation built on July 19, 2020, 5:27 p.m.