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


R date 係統日期和時間


R語言 date 位於 base 包(package)。

說明

返回當前係統日期和時間的字符串。

用法

date()

該字符串的形式為 "Fri Aug 20 11:11:00 1999" ,即長度為 24,因為它依賴於 POSIX 的 ctime 確保上述固定格式。時區和夏令時會被考慮在內,但不會在結果中指出。

無論區域設置如何,日和月縮寫始終為英文。

例子


(d <- date())
nchar(d) == 24

## something similar in the current locale
##   depending on ctime; e.g. %e could be %d:
format(Sys.time(), "%a %b %e %H:%M:%S %Y")

參考

Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.

也可以看看

Sys.DateSys.timeDateDateTimeClasses 用於表示日期和時間的對象。

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 System Date and Time。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。