The Ultimate Opinionated Guide to Base R Date Format Functions
Posted on Tue 09 April 2019 in R • Tagged with R, Date • Leave a comment
When I was first learning R, working with dates was one of the hardest and most time consuming tasks I dealt with. There are so many things to learn! What do I do with as.POSIXct()
, as.POSIXlt()
, strftime()
, strptime()
, format()
, and as.Date()
? R date formats were confusing, and ...