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


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


weekdays()R語言中的函數用於確定作為參數傳遞給它的特定日期的工作日。

用法: weekdays(date, abbreviate)

參數:
date:檢查日期
abbreviate:布爾值來縮寫工作日

範例1:


# R program to find the weekday 
# on a specific date
  
# Specifying the date
date <- as.POSIXlt("2020-06-23")
date
  
# Calling weekdays() function
weekdays(date)

輸出:

[1] "2020-06-23 UTC"
[1] "Tuesday"

範例2:


# R program to find the weekday 
# on a specific date
  
# Specifying the date
date <- as.POSIXlt("1994-06-17")
date
  
# Calling weekdays() function
weekdays(date, abbreviate = TRUE)

輸出:

[1] "1994-06-17 UTC"
[1] "Fri"

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Determine the Weekday on a Specific Date in R Programming – weekdays() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。