File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ Sys.setenv(DUCKPLYR_FALLBACK_COLLECT = 0)
108108```
109109
110110``` {r dropin-dplyr}
111- conflict_prefer("filter", "dplyr", quiet = TRUE )
111+ conflict_prefer("filter", "dplyr")
112112```
113113
114114The following code aggregates the inflight delay by year and month for the first half of the year.
Original file line number Diff line number Diff line change @@ -61,7 +61,9 @@ library(duckplyr)
6161```
6262
6363``` r
64- conflict_prefer(" filter" , " dplyr" , quiet = TRUE )
64+ conflict_prefer(" filter" , " dplyr" )
65+ # > [conflicted] Will prefer dplyr::filter
66+ # > over any other package.
6567```
6668
6769The following code aggregates the inflight delay by year and month for
Original file line number Diff line number Diff line change @@ -60,7 +60,9 @@ library(duckplyr)
6060
6161
6262``` r
63- conflict_prefer(" filter" , " dplyr" , quiet = TRUE )
63+ conflict_prefer(" filter" , " dplyr" )
64+ # > [1m[22m[90m[conflicted][39m Will prefer [1m[34mdplyr[39m[22m::filter
65+ # > over any other package.
6466```
6567
6668The following code aggregates the inflight delay by year and month for the first half of the year.
You can’t perform that action at this time.
0 commit comments