Help, please!! I'm new to R. I'm following the instructions given on the class I'm taking and I can't install Lubridate. That's the error it gives me:
library(lubridate)
Error in library(lubridate) : there is no package called ‘lubridate’
library(lubridate)
Error in library(lubridate) : there is no package called ‘lubridate’
You probably need to install the lubridate package by running
install.packages("lubridate")
You can then run library(lubridate) to load the package.
The package installation can also be done in RStudio with the menu Tools -> Install Packages.
The installation only needs to be done once. The loading with library() needs to be done in every R session where you want to use lubridate.