date() function in
R Language is used to return the current date and time.
Syntax: date()
Parameters:
Does not accept any parameters
Example:
Output:
[1] "Thu Jun 11 04:29:39 2020"
Sys.Date() Function
Sys.Date() function is used to return the system's date.
Syntax: Sys.Date()
Parameters:
Does not accept any parameters
Example:
Output:
[1] "2020-06-11"
Sys.time()
Sys.time() function is used to return the system's date and time.
Syntax: Sys.time()
Parameters:
Does not accept any parameters
Example:
Output:
[1] "2020-06-11 05:35:49 UTC"
Sys.timezone()
Sys.timezone() function is used to return the current time zone.
Syntax: Sys.timezone()
Parameters:
Does not accept any parameters
Example:
Output:
[1] "Etc/UTC"