when "library(tidyverse)", console prompot like this:
> library(tidyverse)
── Attaching packages ─────────────────────────────────────── tidyverse 1.3.0 ──
<U+2713> tibble 2.1.3 <U+2713> purrr 0.3.3
<U+2713> tidyr 1.0.0 <U+2713> stringr 1.4.0
<U+2713> readr 1.3.1 <U+2713> forcats 0.4.0
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
x stats::filter() masks dplyr::filter()
x stats::lag() masks dplyr::lag()
and my question is, why not like this:
x dplyr::filter() masks stats::filter()
x dplyr::lag() masks stats::lag()