I am having a problem with the package Lubridate in R. I can install the package, but when I go to call the library(lubridate) I keep getting the error message below.
"Attaching package: ‘lubridate’
The following objects are masked from ‘package:base’:
date, intersect, setdiff, union"
I have also noticed that when I install the tidyverse package that lubridate and all its functions are not being included.
Below is a screenshot of the error code below. If the photo doesn't work the code is below aswell.
library(tidyverse) ── Attaching packages ─────────────────────────────────────────────────────────────────────────────────────────────── tidyverse 1.3.2 ── ✔ ggplot2 3.3.6 ✔ purrr 0.3.4 ✔ tibble 3.1.8 ✔ dplyr 1.0.9 ✔ tidyr 1.2.0 ✔ stringr 1.4.0 ✔ readr 2.1.2 ✔ forcats 0.5.1 ── Conflicts ────────────────────────────────────────────────────────────────────────────────────────────────── tidyverse_conflicts() ── ✖ dplyr::filter() masks stats::filter() ✖ dplyr::lag() masks stats::lag() library(lubridate)
Attaching package: ‘lubridate’
The following objects are masked from ‘package:base’:
date, intersect, setdiff, union