I am extremely new to RStudio and R in general. I've been following along with the Google Data Analytics course and it has guided us to install tidyverse in RStudio, load it using library(tidyverse) and also load the lubridate package with library(lubridate).
Executing library(tidyverse) worked but when I go and try to do library(lubridate), nothing happens. Not even an error message. Does anyone know what this is about?
First, the tidyverse package includes lubridate, so there is no need to load lubridate separately. Second, the library() function normally doesn't return any output. If you don't get an error, you're fine.
You can use the search() function to see what packages you have loaded. Here are the results of that before and after loading tidyverse. Notice lubridate is listed.
Thank you so much!! The screenshot they provided wasn't matching up with what showed up for me. But now I realize that their material is probably a bit dated...I used the search function and looks like we are good.