Times and Dates Flashcards
1
Q
How can we get the current date and time in R?
A
Sys.Date() and Sys.time()
2
Q
What are the classes of dates and times in R?
A
Date and POSIXct
3
Q
Which function converts a character string into a date?
A
as.Date()
Ex: as.Date(“1971-06-14”)
4
Q
How can you modify dates and times?
A
You can do normal arithmetic on them, using numerics.