Learn R Programming

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

dint

A Toolkit for Year-Quarter, Year-Month and Year-Isoweek Dates

S3 classes and methods to create and work with year-quarter and year-month vectors. Basic arithmetic operations (such as adding and subtracting) are supported, as well as formatting and converting to and from standard R Date types.

Installation

Install the release version of dint from CRAN:

install.packages("dint")

Or install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("s-fleck/dint")

Example

library(dint)

# creation
q <- date_yq(2014, 4)
m <- as_date_ym(201412)
w <- as_date_yw(as.Date("2017-01-01"))

# printing
print(q)
#> [1] "2014-Q4"
print(m)
#> [1] "2014-M12"
print(w)  # isoweeks do not follow calender years!
#> [1] "2016-W52"

# arithmetic operations
# quarters
q
#> [1] "2014-Q4"
q + 1
#> [1] "2015-Q1"
seq(q -2, q + 2)
#> [1] "2014-Q2" "2014-Q3" "2014-Q4" "2015-Q1" "2015-Q2"


# months
m
#> [1] "2014-M12"
m + 1
#> [1] "2015-M01"
seq(m -2, m + 2)
#> [1] "2014-M10" "2014-M11" "2014-M12" "2015-M01" "2015-M02"


# formatting
format(q)
#> [1] "2014-Q4"
format(q, "%Y.%q")
#> [1] "2014.4"
format(q, "%y.%q")
#> [1] "14.4"
format(m)
#> [1] "2014-M12"


# get start and end of period
last_of_quarter(q)
#> [1] "2014-12-31"
first_of_quarter(q)
#> [1] "2014-10-01"
first_of_month(Sys.Date())
#> [1] "2018-09-01"
first_of_isoweek(w)
#> [1] "2016-12-26"
last_of_isoweek(w)
#> [1] "2017-01-01"

Copy Link

Version

Install

install.packages('dint')

Monthly Downloads

2,730

Version

2.0.0

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Stefan Fleck

Last Published

September 29th, 2018

Functions in dint (2.0.0)

first_of_isoweek

Get First / Last Day of an Isoweek
first_of_month

Get First / Last Day of a Month
first_of_isoyear

Get First / Last Day of the First and Last Isoweek of a Year
%y+%

Add/Subtract Year
year.date_xx

Get Year, Quarter or Month (lubridate Compatibility)
date_yq

A Simple S3-Class for Year-Quarter Dates
first_of_yq

Get First or Last Day of Quarter From Year and Quarter
date_yw

A Simple S3-Class for Year-Isoweek Dates
format_date_xx

Format a date_xx
first_of_year

Get First / Last Day of a Year
deprecated

Deprecated functions
Summary.date_xx

Maxima and Minima for date_xx
format_yw

Coerce and Format to Year-Isoweek Strings
get_year

Get Year, Quarter, Month or Isoweek
first_of_quarter

Get First / Last Day of a Quarter
is_quarter_bounds

Test for Quarter Bounds
dint-package

dint: A Toolkit for Year-Quarter, Year-Month and Year-Isoweek Dates
[.date_xx

Extract or Replace Elements of a date_xx
print.date_xx

Print a date_xx Object
format_ym

Coerce and Format to Year-Month Strings
format_yq

Coerce and Format to Year-Quarter Strings
date_y

A Simple S3-Class for Years
date_ym

A Simple S3-Class for Year-Month Dates
c.date_xx

Concatenate date_xx Objects
date_xx_arithmetic_disabled

Disabled Date Arithmetic Operations
as.Date.date_xx

Coerce dint Objects to Base R Date Types
date_xx_sequences

date_xx Sequence Generation
date_xx

A Superclass For All dint Objects
Ops.date_xx

Comparison Operators for date_xx
date_xx_arithmetic

date_xx Arithmetic Operations