⚠️There's a newer version (1.9.3) of this package.Take me there.

lubridate

Overview

Date-time data can be frustrating to work with in R. R commands for date-times are generally unintuitive and change depending on the type of date-time object being used. Moreover, the methods we use with date-times must be robust to time zones, leap days, daylight savings times, and other time related quirks, and R lacks these capabilities in some situations. Lubridate makes it easier to do the things R does with date-times and possible to do the things R does not.

If you are new to lubridate, the best place to start is the date and times chapter in R for data science.

Installation

# The easiest way to get lubridate is to install the whole tidyverse:
install.packages("tidyverse")

# Alternatively, install just lubridate:
install.packages("lubridate")

# Or the the development version from GitHub:
# install.packages("devtools")
devtools::install_github("tidyverse/lubridate")

Cheatsheet

Features

library(lubridate, warn.conflicts = FALSE)
  • Easy and fast parsing of date-times: ymd(), ymd_hms, dmy(), dmy_hms, mdy(), …

    ymd(20101215)
    #> [1] "2010-12-15"
    mdy("4/1/17")
    #> [1] "2017-04-01"
  • Simple functions to get and set components of a date-time, such as year(), month(), mday(), hour(), minute() and second():

    bday <- dmy("14/10/1979")
    month(bday)
    #> [1] 10
    wday(bday, label = TRUE)
    #> [1] Sun
    #> Levels: Sun < Mon < Tue < Wed < Thu < Fri < Sat
    
    year(bday) <- 2016
    wday(bday, label = TRUE)
    #> [1] Fri
    #> Levels: Sun < Mon < Tue < Wed < Thu < Fri < Sat
  • Helper functions for handling time zones: with_tz(), force_tz()

    time <- ymd_hms("2010-12-13 15:30:30")
    time
    #> [1] "2010-12-13 15:30:30 UTC"
    
    # Changes printing
    with_tz(time, "America/Chicago")
    #> [1] "2010-12-13 09:30:30 CST"
    
    # Changes time
    force_tz(time, "America/Chicago")
    #> [1] "2010-12-13 15:30:30 CST"

Lubridate also expands the type of mathematical operations that can be performed with date-time objects. It introduces three new time span classes borrowed from https://www.joda.org.

  • durations, which measure the exact amount of time between two points

  • periods, which accurately track clock times despite leap years, leap seconds, and day light savings time

  • intervals, a protean summary of the time information between two points

Code of Conduct

Please note that the lubridate project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Copy Link

Version

Install

install.packages('lubridate')

Monthly Downloads

748,376

Version

1.7.10

License

GPL (>= 2)

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

February 26th, 2021

Functions in lubridate (1.7.10)

day

Get/set days component of a date-time
is.Date

Various date utilities
format_ISO8601_precision_check

Provide a format for ISO8601 dates and times with the requested precision.
guess_formats

Guess possible date-times formats from a character vector
date_decimal

Converts a decimal to a date
fit_to_timeline

Fit a POSIXlt date-time to the timeline
local_time

Get local time from a date-time vector.
dst

Get daylight savings time indicator of a date-time
is.difftime

Is x a difftime object?
decimal_date

Converts a date to a decimal of its year
duration

Create a duration object.
parse_date_time

User friendly date-time parsing functions
Duration-class

Duration class
is.instant

Is x a date-time object?
reclass_date

Convenience method to reclass dates post-modification.
reclass_timespan

Convenience method to reclass timespans post-modification.
period

Create or parse period objects
pretty_dates

Computes attractive axis breaks for date-time data
days_in_month

Get the number of days in the month of a date-time
leap_year

Is a year a leap year?
as_date

Convert an object to a date or date-time
cyclic_encoding

Cyclic encoding of date-times
as.period

Change an object to a period
week

Get/set weeks component of a date-time
with_tz

Get date-time in a different time zone
hidden_aliases

Internal page for hidden aliases
ms

Parse periods with hour, minute, and second components
%m+%

Add and subtract months to a date without exceeding the last day of the new month
year

Get/set years component of a date-time
%within%

Does a date (or interval) fall within an interval?
quarter

Get the fiscal quarter and semester of a date-time
interval

Utilities for creation and manipulation of Interval objects
tz

Get/set time zone component of a date-time
month

Get/set months component of a date-time
hour

Get/set hours component of a date-time
date

Get/set date component of a date-time
timespan

Description of time span classes in lubridate
lubridate-package

Dates and times made easy with lubridate
minute

Get/set minutes component of a date-time
period_to_seconds

Contrive a period to/from a given number of seconds
make_datetime

Efficient creation of date-times from numeric representations
round_date

Round, floor and ceiling methods for date-time objects
make_difftime

Create a difftime object.
rollbackward

Roll backward or forward a date the previous, current or next month
is.POSIXt

Various POSIX utilities
format_ISO8601

Format in ISO8601 character format
lakers

Lakers 2008-2009 basketball data set
reexports

Objects exported from other packages
stamp

Format dates and times based on human-friendly templates
force_tz

Replace time zone to create new date-time
is.timespan

Is x a length of time?
now

The current day and time
origin

1970-01-01 UTC
time_length

Compute the exact length of a time span
second

Get/set seconds component of a date-time
ymd_hms

Parse date-times with year, month, and day, hour, minute, and second components.
ymd

Parse dates with year, month, and day components
DateCoercion

Convert a variety of date-time classes to POSIXlt and POSIXct
Deprecated-lubridate

Deprecated functions in the lubridate package
Interval-class

Interval class
am

Does date time occur in the am or pm?
as.interval

Change an object to an interval
as.duration

Change an object to a duration
Period-class

Period class
Timespan-class

Timespan class
DateTimeUpdate

Changes the components of a date object