How to convert Excel serial date to POSIXct in R (i.e. 42309 = 2015-11-01)

If you are converting a column of Excel serial dates in a dataframe:

> df$yourDates <- as.POSIXct(as.Date(df$yourDates, origin = “1899-12-30”)) [1] [POSIXct dates]

… or …

If you are converting a single Excel serial date:

> mydate = as.POSIXct(as.Date(42309, origin = “1899-12-30”))
[1] 2015-11-01

Note: This solution requires the lubridate package.

 
1
Kudos
 
1
Kudos

Now read this

How to display and flush the DNS Resolver Cache on Windows

The DNS Resolver Cache is a temporary storage cache for DNS lookups on your local machine that allows for efficient resolution of recently accessed URLs to IP addresses. To display the DNS Resolver Cache in Windows enter the following... Continue →