Ok, why do people keep doing this:
library(tidyverse)
library(lubridate)
when the first call automatically loads the package in the second call? Am I missing something here?
I see this **everywhere**!
Ok, why do people keep doing this:
library(tidyverse)
library(lubridate)
when the first call automatically loads the package in the second call? Am I missing something here?
I see this **everywhere**!
Thanks to #lubridate parsing at work in {ggcalendar}, you can switch to Monday week start if you so choose with options call.
options(lubridate.week.start = 1) # change to Monday start, 7 (Sunday) is lubridate's default
Thanks @minga for inquiry! Example w/ flights data - number of flights drop on the weekend. Sat and Sunday positioned at the end of the week because of the options call! #ggplot2