The warning is telling you that dplyr::filter()
is masking the base R function stats::filter()
so no need to do anything else. Have in mind that filer()
comes from dplyr
not from tidyverse
, the latest is just an aggregator for a family of packages that get loaded together.
2 Likes