R/this_month.R

Defines functions this_month

Documented in this_month

this_month <-
function(x = Sys.Date(),
         part = getOption("timeperiodsR.parts")) {
  
  if ( ! inherits(x, "Date") ) {
    x <- as.Date(x)
  }
  
  start <- floor_date( x, unit = "month" )
  stop  <- ceiling_date( x, unit = "month" ) - days(1)
  out   <- custom_period(start, stop)
  
  part <- match.arg(part, getOption("timeperiodsR.parts"))
  
  if ( part == "all" ) {
    return(out) 
  } else {
    return(out[[part]]) 
  } 
}
selesnow/timeperiodsR documentation built on Jan. 27, 2024, 7:32 a.m.