Obtenga la fecha y la hora en diferentes formatos en la programación R: función date(), Sys.Date(), Sys.time() y Sys.timezone()

date()La función en lenguaje R se usa para devolver la fecha y la hora actuales.

Sintaxis: fecha()

Parámetros:
No acepta ningún parámetro

Ejemplo:

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

Producción:

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

Función Sys.Date()

Sys.Date()La función se utiliza para devolver la fecha del sistema.

Sintaxis: Sys.Date()

Parámetros:
No acepta ningún parámetro

Ejemplo:

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

Producción:

[1] "2020-06-11"

tiempo del sistema()

Sys.time()La función se utiliza para devolver la fecha y la hora del sistema.

Sintaxis: Sys.time()

Parámetros:
No acepta ningún parámetro

Ejemplo:

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

Producción:

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

sys.timezone()

Sys.timezone()La función se utiliza para devolver la zona horaria actual.

Sintaxis: Sys.timezone()

Parámetros:
No acepta ningún parámetro

Ejemplo:

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

Producción:

[1] "Etc/UTC"

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *