La función strftime() en R Language se usa para convertir los objetos de fecha y hora dados en su representación de string.
Sintaxis: strftime(tiempo)
Parámetros:
tiempo: objeto de tiempo especificado
Ejemplo 1:
Python3
# R program to illustrate # strftime function # Specifying a date and time x <- "2020-06-01 16:15:10 EST" # Calling strftime() function strftime(x)
Producción:
[1] "2020-06-01 16:15:10"
Ejemplo 2:
Python3
# R program to illustrate # strftime function # Specifying a date and time using # as.Date( ) function which converts # the character data to dates. x <- as.Date("2020-06-17 12:10:20 EST") # Calling the strftime() function using the % F format # which is equivalent to % Y-% m-% d (the ISO 8601 date format) y <- strftime(x, '% F') # Getting string representation of # the given date and time object y
Producción:
[1] "2020-06-17"
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