Learn R Programming

tidylog (version 0.2.0)

select: Wrapper around dplyr::select and related functions that prints information about the operation

Description

Wrapper around dplyr::select and related functions that prints information about the operation

Usage

select(.data, ...)

select_all(.data, ...)

select_if(.data, ...)

select_at(.data, ...)

Arguments

.data

a tbl; see select

...

see select

Value

see select

Examples

Run this code
# NOT RUN {
select(mtcars, mpg, wt)
#> select: dropped 9 variables (cyl, disp, hp, drat, qsec, ...)
select(mtcars, dplyr::matches("a"))
#> select: dropped 7 variables (mpg, cyl, disp, hp, wt, ...)
# }

Run the code above in your browser using DataLab