Description Usage Arguments Value Examples
View source: R/removeDataframeColumns.R
This function is removes unneeded columns from datasets.
| 1 | removeDataframeColumns(dataframe, ...)
 | 
| dataframe | the dataframe to removed the columns from | 
| ... | the column names to be removed as character strings (quoted). | 
same dataframe with columns removed
| 1 2 | df <- data.frame(column1 = 1, column2 = 2, column3 = 3)
df <- removeDataframeColumns(df, 'column1', 'column3')
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.