📜  在 R 编程中获取不同格式的日期和时间 - date()、Sys.Date()、Sys.time() 和 Sys.timezone()函数

📅  最后修改于: 2022-05-13 01:54:41.266000             🧑  作者: Mango

在 R 编程中获取不同格式的日期和时间 - date()、Sys.Date()、Sys.time() 和 Sys.timezone()函数

R 语言中的date()函数用于返回当前日期和时间。

例子:

# R program to illustrate
# date function
  
# Calling date() function to 
# return current date and time
date()

输出:

[1] "Thu Jun 11 04:29:39 2020"

Sys.Date()函数

Sys.Date()函数用于返回系统的日期。

例子:

# R program to illustrate
# Sys.Date function
  
# Calling Sys.Date() function to 
# return the system's date
Sys.Date()

输出:

[1] "2020-06-11"

系统时间()

Sys.time()函数用于返回系统的日期和时间。

例子:

# R program to illustrate
# Sys.time function
  
# Calling Sys.time() function to 
# return the system's date and time
Sys.time()

输出:

[1] "2020-06-11 05:35:49 UTC"

系统时区()

Sys.timezone()函数用于返回当前时区。

例子:

# R program to illustrate
# Sys.timezone function
  
# Calling Sys.timezone() function to 
# return the current time zone
Sys.timezone()

输出:

[1] "Etc/UTC"