R/thai_to_greg.R

Defines functions thai_to_greg

Documented in thai_to_greg

# TITLE: DHS Calendar Conversion Functions
# Author: Heeju Sohn
# Date: August 1, 2018
#' Thai calendar to Gregorian Calendar (in CMC format) Conversion

#' @param cmc Thai Century Month Code defaults to NULL
#' @keywords Thai Calendar DHS
#' @author Heeju Sohn
#' @export 
#' @examples 
#' thai_to_greg()



thai_to_greg <- function(cmc = NULL){
  outcmc = cmc - (543*12)
  return(outcmc)
}
hesohn/DHSmortality documentation built on May 5, 2019, 11 p.m.