當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 julian()用法及代碼示例


在 R 編程中,可以通過使用基本函數 julian() 並在函數中傳遞日期對象作為參數來確定兩個日期之間的差異。它忽略 leap-seconds。

用法: julian(x, origin)

參數:
x:表示日期對象
origin:表示必須從中計算差異的另一個日期對象

範例1:


# Define date objects
x <- as.Date("2020-06-18")
origin_date <- as.Date("2015-05-01")
  
# Difference between dates
julian(x, origin_date)

輸出:

[1] 1875
attr(, "origin")
[1] "2015-05-01"

範例2:


# Define date objects
x <- as.Date("2020-06-18")
origin_date <- as.Date("1920-06-18")
  
# Find difference between dates
julian(x, origin_date)

輸出:

[1] 36525
attr(, "origin")
[1] "1920-06-18"

相關用法


注:本文由純淨天空篩選整理自utkarsh_kumar大神的英文原創作品 Find the Difference Between Two Dates in R Programming – julian() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。