ym2yp {bimets} | R Documentation |
yearmon to Year-Period Conversion
Description
This function transforms an input variable of class yearmon()
into an equivalent two-dimensional numerical array of type c(YEAR,PERIOD)
.
Usage
ym2yp(x = NULL)
Arguments
x |
Input of class |
Value
This function returns a two-dimensional numerical array of type c(YEAR,PERIOD)
.
See Also
Examples
#day and month names can change depending on locale
Sys.setlocale('LC_ALL','C')
Sys.setlocale('LC_TIME','C')
print(ym2yp(as.yearmon("Dec 2013"))); #print c(2013,12)
print(ym2yp(c(as.yearmon('Jan 2000'),as.yearmon('Dec 1987'),
as.yearmon('Jan 2003'),as.yearmon('Mar 2012'))))
[Package bimets version 4.0.1 Index]