https://github.com/cran/Epi
Raw File
Tip revision: 99077298963c4bd8a784cd743709545cec22fce6 authored by Bendix Carstensen on 06 September 2009, 19:52:19 UTC
version 1.1.2
Tip revision: 9907729
cal.yr.R
cal.yr <-
function( x,
     format = "%Y-%m-%d",
         wh = NULL )
{
cl.typ <- c("Date","POSIXct","POSIXlt","date","dates","chron")
# Check if the input is a data frame and convert
  if( inherits( x, "data.frame" ) & is.null(wh) & missing(format) )
    {
    # Indicator of where a date-type variable is
    wh <- sapply( x, inherits, cl.typ )
    # The positions
    wh <- (1:length(wh))[wh]
    }
  if( inherits( x, "data.frame" ) & is.null(wh) & !missing(format)  )
    {
    # Indicator of where the character variables are
    wh <- sapply( x, is.character )
    # The positions
    wh <- (1:length(wh))[wh]
    }
  if( inherits( x, "data.frame" ) & is.vector(wh) )
    {
    if( is.character(wh) ) wh <- match( wh, names(x) )
    # Convert the dates or the character variables
    for( i in wh )
       {
       if( is.character(x[,i]) )
         x[,i] <- cal.yr( x[,i], format=format )
       else
         x[,i] <- cal.yr( x[,i] )
       }
    return( x )
    }
# Finally, down to business --- converting a vector to decimal years:
# Check if the input is some kind of date or time object
  if( any( inherits( x, cl.typ ) ) )
           x <- as.Date( as.POSIXct( x ) )
  else if( is.character( x ) ) x <- as.Date( x, format = format )
  else if( is.factor( x ) ) x <- as.Date( as.character( x ), format = format )
  else stop( "\nInput should be a data frame, a character vector, a factor or ",
             "some kind of date or time object:\n",
             "Date, POSIXct, POSIXlt, date, dates or chron" )
  res <- as.numeric( x ) / 365.25 + 1970
  class( res ) <- c("cal.yr","numeric")
  return( res )
}
back to top