View source: R/excel_to_date.R
dtt_excel_to_date | R Documentation |
Converts Excel dates encoded as serial numbers to date class.
dtt_excel_to_date(x, modern = TRUE, ...)
x |
A vector of numbers to convert. |
modern |
A flag specifying whether to use the modern or old Excel date system. |
... |
Unused. |
Defaults to the modern Excel date encoding system. Excel for Mac 2008 and earlier Mac versions of Excel use a different date system. If the date 2016-01-01 is represented by 42370, it's the modern system. If it's 40908, it's the old system.
A floored Date vector.
Other floor:
dtt_date()
,
dtt_date_time()
,
dtt_floor()
,
dtt_floored()
,
dtt_set_time()
dtt_excel_to_date(42370)
dtt_excel_to_date(40908, modern = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.