deselect | R Documentation |
deselect columns. To keep columns please see select_se
.
deselect(.data, colNames)
.data |
data.frame |
colNames |
character vector of columns to remove |
.data without deselected columns
select_se
, select
, select_at
datasets::mtcars %.>% deselect(., c("cyl", "gear")) %.>% head(.) # essentially dplyr::select( datasets::mtcars, -cyl, -gear)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.