Working with Dates and Times Pt 1

[This article was first published on Steve's Data Tips and Tricks, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Introduction

In this post, we will cover the basics of handling dates and times in R using the as.Date, as.POSIXct, and as.POSIXlt functions. We will use the example code below to explain each line in simple terms. Let’s get started!

Here is the script we are going to look at:

# the date object
Steve_online <- as.Date("1981-02-25")

str(Steve_online) #Date[1:1], format: "1981-02-25
 Date[1:1], format: "1981-02-25"
class(Steve_online) #Date
[1] "Date"
as.numeric(Steve_online) # stored as number of days since 1970-01-01
[1] 4073
as.numeric(as.Date("1970-01-01")) # equals zero
[1] 0
as.Date(as.Date("1970-01-01") + 4073) # produces 1981-02-25 -- our original date
[1] "1981-02-25"
# vectors can contain multiple dates
Steve_online <- as.Date(c("1981-02-25", "1997-01-12"))
str(Steve_online)
 Date[1:2], format: "1981-02-25" "1997-01-12"
Steve_online[2]
[1] "1997-01-12"
# what about POSIX?
# POSIXct stores date time as integer == # seconds since 1970-01-01 UTC
Steve_online <- as.POSIXct("1981-02-25 02:25:00", tz = "US/Mountain")
as.integer(`Steve_online`)
[1] 351941100
# POSIXlt stores date time as list:sec, min, hour, mday, mon, year, wday, yday, isdst, zone, gmtoff
Steve_online <- as.POSIXlt("1981-02-25 02:25:00", tz = "US/Mountain")
as.integer(Steve_online) # no longer an integer
Warning: NAs introduced by coercion
 [1]  0 25  2 25  1 81  3 55  0 NA NA
unclass(Steve_online) # this shows the components of the list
$sec
[1] 0

$min
[1] 25

$hour
[1] 2

$mday
[1] 25

$mon
[1] 1

$year
[1] 81

$wday
[1] 3

$yday
[1] 55

$isdst
[1] 0

$zone
[1] "MST"

$gmtoff
[1] NA

attr(,"tzone")
[1] "US/Mountain"
month.name[Steve_online$mon + 1] # equals February
[1] "February"

The first line of code creates a date object called Steve_online with the value of February 25, 1981, using the as.Date function. This function is used to convert a character string to a date object. The str function is then used to show the structure of the Steve_online object, which is of class Date.

The as.numeric function is used to convert the Steve_online object to the number of days since January 1, 1970 (known as the Unix epoch). This is a common way of representing dates in programming languages, and is useful for calculations involving dates. We also demonstrate that as.numeric(as.Date("1970-01-01")) returns zero, since this is the starting point of the Unix epoch.

We then show how to add or subtract days from a date object by adding or subtracting the desired number of days (as an integer) to the as.Date function with the reference date of January 1, 1970. In this case, we add 4073 days to January 1, 1970, resulting in the date of February 25, 1981 (our original date).

Next, we demonstrate how to create a vector of date objects by passing a character vector of dates to the as.Date function. The str function is used again to show the structure of the Steve_online object, which is now a vector of two date objects. We then show how to access the second element of the vector using indexing (Steve_online[2]).

Moving on to POSIX objects, we introduce the as.POSIXct function, which creates a POSIXct object that stores date time as an integer equal to the number of seconds since January 1,

To leave a comment for the author, please follow the link and comment on their blog: Steve's Data Tips and Tricks.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)