Times and Dates Flashcards

1
Q

How can we get the current date and time in R?

A

Sys.Date() and Sys.time()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the classes of dates and times in R?

A

Date and POSIXct

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which function converts a character string into a date?

A

as.Date()

Ex: as.Date(“1971-06-14”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can you modify dates and times?

A

You can do normal arithmetic on them, using numerics.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly