Skip to contents

tbflt() can save a series of filter conditions, and support logical operating among conditions

Usage

tbflt(x = expression(), .env = NULL)

Arguments

x

any expression

.env

environment

Value

tbflt

Examples

c1 <- tbflt(cut == "Fair")

c2 <- tbflt(x > 8)

!c1
#> <quosure>
#> expr: ^!cut == "Fair"
#> env:  0x55733243df40

c1 | c2
#> <quosure>
#> expr: ^cut == "Fair" | x > 8
#> env:  0x557333ce1cc0

c1 & c2
#> <quosure>
#> expr: ^cut == "Fair" & x > 8
#> env:  0x557332b726d8