Brief description of the problem
Loading tidyverse package doesn't automatically load hms package. Which is unsual! According to docs I can do that. Manually loading it works as normal.
> 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()
> hms()
Error in hms() : could not find function "hms"
> hms(55)
Error in hms(55) : could not find function "hms"
> library(hms)
> hms(55)
00:00:55
Brief description of the problem Loading tidyverse package doesn't automatically load hms package. Which is unsual! According to docs I can do that. Manually loading it works as normal.