timeperiodsR (version 0.6.2)

previous_month: Start and end of previous month

Description

Defines first and last date in n previous month

Usage

previous_month(x = Sys.Date(),
               n = 1, 
               part = getOption("timeperiodsR.parts"))

Value

Object of tpr class

Arguments

x

Date object

n

Number of periods for offset

part

Part of period you need to receive, one of "all", "start", "end","sequence", "length". See details.

Author

Alexey Seleznev

Details

You can get object of tpr class with all components or specify which component you need, use part for manage this option:

  • all - get all components

  • start - get only first date of period

  • end - get only last date of period

  • start - get vector of all dates in period

  • length - get number of dates in period

See Also

For get next other periods see previous_week(), previous_quarter(), previous_year()

Examples

Run this code
## To get start, end and sequence of previous month
previousmonth <- previous_month()

## To get vector of date sequences 
previous_month(part = "sequence")
previous_month()$sequence
seq(previousmonth)

## Get number of days of previous months
day_nums <- previous_month(part = "length")
previous_month()$length
length(previousmonth)

Run the code above in your browser using DataCamp Workspace