date_mdy: Create a 'Date' from month, day and year.

Description Usage Arguments Value Examples

Description

Create a Date from month, day and year.

Usage

1
date_mdy( month, day, year) 

Arguments

month

Numeric vector of months

day

Numeric vector of days

year

Numeric vector of years

Value

A vector of Date.

Examples

1
2
db <- data.frame(month=10:12, day=15:17, year=1982:1984)
date_mdy(month = db$month, day= db$day, year=db$year)

yapomif documentation built on May 2, 2019, 4:51 p.m.