conflicts during tidyverse package installation

I am brand new to R, trying to install Tidyverse. After installing, when trying to load the Lubridate library, ,console looks like this (Iam not a programmer): Are these conflicts preventing the Lubridate library from loading? The code does not appear to execute.

---Conflicts---------------------------------------------------------
x dplyr::filter() masks stats: :filter()
x dplyr::lag() masks stats: :lag()
Use the conflicted. package to force all conflicts to become errors
library(lubridate)

No, they are not. You can see the loaded packages with

loadedNamespaces()

and the attached (i.e. with library()) packages with

search()

What is happening in that the package dplyr has functions with the same name as the package stats. R is saying that it will be using the dplyr functions by default in this session. If you need to use the stats function of the same name you can specify it by using:

stats::filter()

Thank you! so much This is really helpful.

Got it. Thank you. Thank you. I truly appreciate it.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.