Convert Excel numeric to date

后端 未结 3 1916
轮回少年
轮回少年 2020-12-11 06:08

I have a vector of numeric excel dates i.e.

date <- c(42963,42994,42903,42933,42964)

The output am I expecting when using

相关标签:
3条回答
  • 2020-12-11 06:43

    You can simply use as.Date and specify the origin, i.e.

    as.Date(date, origin="1899-12-30") 
    #[1] "2017-08-16" "2017-09-16" "2017-06-17" "2017-07-17" "2017-08-17"
    
    #or format it to your liking,
    
    format(as.Date(date, origin="1899-12-30"), '%b %Y') 
    #[1] "Aug 2017" "Sep 2017" "Jun 2017" "Jul 2017" "Aug 2017"
    

    This link gives quite a bit of information on this matter.

    0 讨论(0)
  • 2020-12-11 06:49

    Type excel_numeric_to_date to look at the function's code and you'll see it's a wrapper for the line of code used by the other answers to this question: as.Date(date_num, origin = "1899-12-30").

    So that's not the issue.

    The underlying matter here is confusion about date formatting. You say you expect your first number 42963 to become "Aug 2016", and your last number 42964 to become "Aug 2017". The latter is just one more than the former, which shows up in the conversion - they should be a day apart, not a year apart as you are expecting:

    > excel_numeric_to_date(c(42963, 42964))
    [1] "2017-08-16" "2017-08-17" # as expected, they are one day apart
    

    Perhaps the day and year fields are switched upstream in your data at the point where these get mapped to integer dates, and it was hard to tell here because of the values chosen.

    0 讨论(0)
  • 2020-12-11 06:55

    If you want to convert dates from Excel, you can use as.Date() with a specific origin. According to the documentation, '1900-01-01' is used as day ` in Excel.

    date <- c(42963,42994,42903,42933,42964)
    

    This is the result of as.Date():

    as.Date(date, origin = "1900-01-01")
    [1] "2017-08-18" "2017-09-18" "2017-06-19" "2017-07-19" "2017-08-19"
    

    You can then use zoo::as.yearmon()` to get the expected outcome:

    zoo::as.yearmon(as.Date(date, origin = "1900-01-01"))
    [1] "Aug 2017" "Sep 2017" "Jun 2017" "Jul 2017" "Aug 2017"
    
    0 讨论(0)
提交回复
热议问题