date2days: Convert date to day count

View source: R/date2days.R

date2daysR Documentation

Convert date to day count

Description

Convert date mm/dd/yyyy to days since the 1st of startmonth, starting with days = 1 for the 1st day of startmonth.

Usage

date2days(date, dateformat, startmonth)

Arguments

date

date character string with format as specified in dateformat

dateformat

string specifying format of date, e.g. "mm/dd/yyyy", "yyyy-dd-mm", "dd–mm" etc.

startmonth

integer between 1 and 12 indicating month from which to start counting.

Value

Returns an integer = number of days since 1st of startmonth, starting with 1 = 1st of startmonth.

Author(s)

Bo T. Bonnevie

Examples

date2days("01/01/2010", "dd/mm/yyyy", 1)
date2days("01-01-2010", "dd-mm-yyyy", 2)
date2days("2008/06/01", "yyyy/mm/dd", 8)    # year has no effect

moult documentation built on Aug. 30, 2022, 9:06 a.m.