Learn R Programming

tidylog (version 0.2.0)

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

Description

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

Usage

filter(.data, ...)

filter_all(.data, ...)

filter_if(.data, ...)

filter_at(.data, ...)

distinct(.data, ...)

distinct_all(.data, ...)

distinct_if(.data, ...)

distinct_at(.data, ...)

top_n(.data, ...)

drop_na(.data, ...)

Arguments

.data

a tbl; see filter

...

see filter

Value

see filter

Examples

Run this code
# NOT RUN {
filter(mtcars, mpg > 20)
#> filter: removed 18 rows (56%), 14 remaining
filter(mtcars, mpg > 100)
#> filter: removed all rows (100%)
# }

Run the code above in your browser using DataLab